From 8b11e2defea43b10b84882e00245cfe3e2cd268e Mon Sep 17 00:00:00 2001 From: rushilwiz Date: Tue, 16 Jun 2020 23:23:45 -0400 Subject: [PATCH 1/8] trying to get the bg service to work with the cli --- skoolos.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/skoolos.py b/skoolos.py index 82fbe17..ec35326 100644 --- a/skoolos.py +++ b/skoolos.py @@ -100,14 +100,21 @@ def main(): #################################################################################################### STUDENT METHODS def stop_bg_service(): + print("good") bg.stop_watching() + print('also') cur_path = os.path.dirname(__file__) + print('yes') newpath = os.path.relpath('bgservice/SkoolOS/logs') + logText = "" + with open(newpath, 'r') as logfile: + logfile.read() + print (logText) def empty_logs(): logs_folder = os.path.dirname(__file__) + 'bgservice/SkoolOS/logs/' for filename in os.listdir(logs_folder): - file_path = os.path.join(folder, filename) + file_path = os.path.join(logs_folder, filename) try: if os.path.isfile(file_path) or os.path.islink(file_path): os.unlink(file_path) From 8f8e55acdb9b1b9496b97549a8add63879683a73 Mon Sep 17 00:00:00 2001 From: Nathaniel Kenschaft Date: Tue, 16 Jun 2020 23:36:19 -0400 Subject: [PATCH 2/8] polised install and cli documentation --- docs/source/cli.rst | 14 ++++++-------- docs/source/install.rst | 14 +++++++------- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/docs/source/cli.rst b/docs/source/cli.rst index c139eaf..4b31d74 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -25,7 +25,8 @@ Start the CLI and select your username. For instance, teacher 'eharris1':: ❯ 2) eharris1 3) Make new user -You will then be given the choice to select an existing class, Make a new class, or exit the CLI::: +You will then be given the choice to select an existing class, Make a new class, or exit the CLI: +:: ? Select class: (Use arrow keys) ❯ Art12_eharris1 @@ -122,7 +123,7 @@ To add an assignment, make an assginment subdirectory in the corresponding class eharris1/English12_eharris1/Assignment1/instruct.txt -You must also put a due date in the correct format. +You must also put a due date in the correct format.:: ? Select new assignment: Assignment1 Enter due date (Example: 2020-08-11 16:58): 2020-08-11 16:58 @@ -132,7 +133,7 @@ View student information You can view certain information of any student requested or confirmed in the given class. Simply select enter their name and see their profile. You are also given the choice to view their logs (files they have saved, written, git commands, and file that dont match the extention whitelist). Note that as a teacher, you can view a student's current -work at ANY TIME. Simply go to the 'Students' directory and select the student's directory. +work at ANY TIME. Simply go to the 'Students' directory and select the student's directory.:: eharris1/Students/English12_eharris1/2022rkhondak eharris1/Students/English12_eharris1/2023rumareti @@ -154,7 +155,7 @@ work at ANY TIME. Simply go to the 'Students' directory and select the student's ============ As a student, you can edit your work for certain classes and submit assignments. By default, your workr directory (your username) has a single readme. AND IT SHOULD STAY THAT WAY. -To make changes to a class, you must first select that class via the CLI. +To make changes to a class, you must first select that class via the CLI.:: Select a class first: ? Select class: (Use arrow keys) @@ -165,6 +166,7 @@ To make changes to a class, you must first select that class via the CLI. You can then view the assignments associated with the class. Open you work directory and modify files within your assignments. At any time, you can 'Save' or go 'Back'. When you are ready, you can submit an assignment: +:: ? Select: (Use arrow keys) Save @@ -175,7 +177,3 @@ When you are ready, you can submit an assignment: ? Select: (Use arrow keys) Assignment1 ❯ Back - -2. CLI as a student: -============ - diff --git a/docs/source/install.rst b/docs/source/install.rst index 55dce84..85b8170 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -4,13 +4,13 @@ Installation Git clone repository: ------- -https://gitlab.tjhsst.edu/understudyathon-2020/group-1/schoolos.git +https://gitlab.tjhsst.edu/understudyathon-2020/group-1/skoolos.git Install repository and create env ------- - -cd SkoolOS -python3 -m venv env -source env/bin/activate -pip install -r requirements.txt - +Run the following commands in order to install SkoolOS: +:: + cd SkoolOS + python3 -m venv env + source env/bin/activate + pip install -r requirements.txt From 5fb88d04086f7697285ed7b55f63e7209ae1c897 Mon Sep 17 00:00:00 2001 From: Nathaniel Kenschaft Date: Tue, 16 Jun 2020 23:40:05 -0400 Subject: [PATCH 3/8] polised install and cli documentation --- docs/source/cli.rst | 1 + docs/source/install.rst | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/source/cli.rst b/docs/source/cli.rst index 4b31d74..6fe0a0c 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -120,6 +120,7 @@ Adding an assignment ------- To add an assignment, make an assginment subdirectory in the corresponding class wiht at least 1 file. Somehting like: +:: eharris1/English12_eharris1/Assignment1/instruct.txt diff --git a/docs/source/install.rst b/docs/source/install.rst index 85b8170..69e8cb3 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -10,6 +10,7 @@ Install repository and create env ------- Run the following commands in order to install SkoolOS: :: + git clone https://gitlab.tjhsst.edu/understudyathon-2020/group-1/skoolos.git SkoolOS cd SkoolOS python3 -m venv env source env/bin/activate From aecdb3b4f1d36fdf8a205ccf8973eb5a01071b13 Mon Sep 17 00:00:00 2001 From: rushilwiz Date: Tue, 16 Jun 2020 23:47:03 -0400 Subject: [PATCH 4/8] finished bgservice --- skoolos.py | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/skoolos.py b/skoolos.py index ec35326..8c74516 100644 --- a/skoolos.py +++ b/skoolos.py @@ -88,11 +88,9 @@ def main(): USER = data['username'] print(data['username']) if data['is_student']: - empty_logs() - bg.watch_dir() + # bg.watch_dir() + # atexit.register(stop_bg_service) studentCLI(USER, PWD) - - atexit.register(stop_bg_service) else: teacherCLI(USER, PWD) @@ -103,26 +101,14 @@ def stop_bg_service(): print("good") bg.stop_watching() print('also') - cur_path = os.path.dirname(__file__) + cur_path = os.path.dirname('') # Change to definite SkoolOS dir print('yes') - newpath = os.path.relpath('bgservice/SkoolOS/logs') + newpath = os.path.relpath('bgservice/SkoolOS/logs/') logText = "" - with open(newpath, 'r') as logfile: + with open(newpath + '/skooloslog', 'r') as logfile: logfile.read() print (logText) -def empty_logs(): - logs_folder = os.path.dirname(__file__) + 'bgservice/SkoolOS/logs/' - for filename in os.listdir(logs_folder): - file_path = os.path.join(logs_folder, filename) - try: - if os.path.isfile(file_path) or os.path.islink(file_path): - os.unlink(file_path) - elif os.path.isdir(file_path): - shutil.rmtree(file_path) - except Exception as e: - print('Failed to delete %s. Reason: %s' % (file_path, e)) - From 1ae65242b76f325c4be86f003f2ebf3fb7c865f0 Mon Sep 17 00:00:00 2001 From: rushilwiz Date: Tue, 16 Jun 2020 23:47:28 -0400 Subject: [PATCH 5/8] commiting to pull --- SkoolOS/logs/skoolos_06162020-221844 | 55 - SkoolOS/logs/skoolos_06162020-221848 | 6452 - SkoolOS/logs/skoolos_06162020-222011 | 4352 - SkoolOS/logs/skooloslog | 416690 +++++++++++++++ .../SkoolOS/logs/skoolos_06162020-210523 | 138987 ----- .../SkoolOS/logs/skoolos_06162020-211153 | 27224 - bgservice/bgservice.py | 236 +- bgservice/checker.py | 117 - rushilwiz | 2 +- 9 files changed, 416866 insertions(+), 177249 deletions(-) delete mode 100644 SkoolOS/logs/skoolos_06162020-221844 delete mode 100644 SkoolOS/logs/skoolos_06162020-221848 delete mode 100644 SkoolOS/logs/skoolos_06162020-222011 create mode 100644 SkoolOS/logs/skooloslog delete mode 100644 bgservice/SkoolOS/logs/skoolos_06162020-210523 delete mode 100644 bgservice/SkoolOS/logs/skoolos_06162020-211153 delete mode 100644 bgservice/checker.py diff --git a/SkoolOS/logs/skoolos_06162020-221844 b/SkoolOS/logs/skoolos_06162020-221844 deleted file mode 100644 index 2492ce9..0000000 --- a/SkoolOS/logs/skoolos_06162020-221844 +++ /dev/null @@ -1,55 +0,0 @@ -Start time: Tuesday, June 16, 2020 22:18:48 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/run.py -Timestamp: Tuesday, June 16, 2020 22:18:48 - -Event: Created file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html -Timestamp: Tuesday, June 16, 2020 22:18:48 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html -Timestamp: Tuesday, June 16, 2020 22:18:48 - -wrote bgservice.run.html -Event: Wrote to a file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html -Timestamp: Tuesday, June 16, 2020 22:18:48 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:18:48 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/test.py -Timestamp: Tuesday, June 16, 2020 22:18:48 - -Event: Created file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 -Timestamp: Tuesday, June 16, 2020 22:18:48 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 -Timestamp: Tuesday, June 16, 2020 22:18:48 - -Event: Wrote to a file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 -Timestamp: Tuesday, June 16, 2020 22:18:48 - -Event: Moved a file out -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 -Timestamp: Tuesday, June 16, 2020 22:18:48 - -Event: Moved a file in -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:18:48 - -Event: Created file -Event Path: /home/nkenschaft/Sysadmin/skoolos/SkoolOS/logs/skoolos_06162020-221848 -Timestamp: Tuesday, June 16, 2020 22:18:48 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/SkoolOS/logs/skoolos_06162020-221848 -Timestamp: Tuesday, June 16, 2020 22:18:48 - diff --git a/SkoolOS/logs/skoolos_06162020-221848 b/SkoolOS/logs/skoolos_06162020-221848 deleted file mode 100644 index 550f87c..0000000 --- a/SkoolOS/logs/skoolos_06162020-221848 +++ /dev/null @@ -1,6452 +0,0 @@ -Start time: Tuesday, June 16, 2020 22:18:52 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:53 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:54 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Moved a file out -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Moved a file in -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 -Timestamp: Tuesday, June 16, 2020 22:18:55 -Event: Moved a file out -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Moved a file in -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Deleted file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 -Timestamp: Tuesday, June 16, 2020 22:18:55 - - -Event: Deleted file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:55 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:56 -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:56 - - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:56 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:58 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:18:59 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:00 - -problem in bgservice.test - KeyboardInterrupt: -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/docs -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/docs -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/docs -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/docs -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/env -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/env -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/env -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/env -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/__pycache__/skoolos.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/__pycache__/skoolos.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connectionpool.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connectionpool.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/six.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/six.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/wait.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/wait.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/ssl_.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/ssl_.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/url.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/url.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/timeout.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/timeout.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/retry.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/retry.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/_collections.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/_collections.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/filepost.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/filepost.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/queue.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/queue.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/poolmanager.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/poolmanager.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/socks.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/socks.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_auth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_auth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/common.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/common.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/parameters.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/parameters.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/signature.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/signature.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/request_validator.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/request_validator.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/errors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/errors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/request_token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/request_token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/authorization.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/authorization.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/access_token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/resource.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/access_token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/resource.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/signature_only.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/pre_configured.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/signature_only.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/pre_configured.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_session.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_session.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_auth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_auth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/authorization.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/authorization.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/errors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/errors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/introspect.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/metadata.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/introspect.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/metadata.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/revocation.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/revocation.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/authorization_code.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/authorization_code.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/uri_validate.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/uri_validate.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/request_validator.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/request_validator.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/implicit.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/implicit.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/resource_owner_password_credentials.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/client_credentials.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/resource_owner_password_credentials.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/refresh_token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/client_credentials.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/refresh_token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/resource.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/resource.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/pre_configured.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/pre_configured.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/tokens.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/tokens.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/parameters.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/parameters.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/signals.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/signals.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/web_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/web_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/mobile_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/mobile_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/legacy_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/legacy_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/backend_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/backend_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/service_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/service_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_session.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_session.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/desired_capabilities.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/desired_capabilities.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/command.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/command.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webelement.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webelement.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/by.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/by.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/keys.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/keys.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/getAttribute.js -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/getAttribute.js -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/isDisplayed.js -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/isDisplayed.js -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/errorhandler.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/errorhandler.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/switch_to.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/switch_to.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/alert.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/alert.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/mobile.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/mobile.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/file_detector.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/file_detector.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/application_cache.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/application_cache.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/extension_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/extension_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_binary.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_binary.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_profile.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_profile.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/proxy.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/proxy.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webelement.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webelement.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/ui.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/ui.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/select.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/select.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/wait.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/wait.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/action_chains.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/action_chains.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/action_builder.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/action_builder.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/interaction.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/interaction.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_actions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_actions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/input_device.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/input_device.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_actions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_actions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/mouse_button.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/mouse_button.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/touch_actions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/touch_actions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/serving.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/serving.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_compat.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_compat.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_internal.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_internal.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/urls.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/urls.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/core.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/core.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_compat.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_compat.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_unicodefun.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_unicodefun.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/globals.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/globals.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/formatting.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/formatting.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/parser.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/parser.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/termui.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/termui.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/types.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/types.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/decorators.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/decorators.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/test.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/test.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/datastructures.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/datastructures.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/filesystem.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/filesystem.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/http.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/http.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/accept.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/accept.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/auth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/auth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/formparser.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/formparser.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/wsgi.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/wsgi.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/common_descriptors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/common_descriptors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/etag.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/etag.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/cors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/cors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/user_agent.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/user_agent.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/useragents.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/useragents.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/interface.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/interface.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/__pycache__/six.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/__pycache__/six.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/auto_suggest.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/auto_suggest.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/wcwidth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/wcwidth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_wide.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_wide.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_zero.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_zero.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/version.json -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/version.json -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/cli.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/cli.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/enums.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/enums.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/vi_state.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/vi_state.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/cache.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/cache.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/types.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/types.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/selection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/selection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/in_memory.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/in_memory.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/completion.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/completion.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/document.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/document.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/history.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/history.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/search_state.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/search_state.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/validation.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/validation.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer_mapping.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer_mapping.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/basic.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/basic.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/keys.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/keys.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/containers.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/containers.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/controls.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/controls.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/mouse_events.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/mouse_events.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/lexers.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/lexers.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/processors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/processors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/reactive.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/reactive.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/screen.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/screen.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/dimension.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/dimension.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/margins.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/margins.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/renderer.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/renderer.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/mouse_handlers.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/mouse_handlers.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/output.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/output.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/defaults.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/defaults.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_dict.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_dict.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_pygments.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_pygments.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/style.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/style.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/plugin.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/plugin.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/util.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/util.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/default.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/default.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/named_commands.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/named_commands.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/completion.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/completion.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/registry.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/registry.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/input_processor.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/input_processor.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/emacs.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/emacs.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/scroll.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/scroll.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/vi.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/vi.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/digraphs.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/digraphs.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/defaults.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/defaults.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/callbacks.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/callbacks.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/shortcuts.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/shortcuts.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/menus.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/menus.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/prompt.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/prompt.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/toolbars.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/toolbars.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/lexer.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/lexer.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/filter.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/filter.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/filters/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/filters/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/regexopt.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/regexopt.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_output.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_output.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/_mapping.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/_mapping.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/modeline.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/modeline.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/_mapping.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/_mapping.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/prompt.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/prompt.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/list.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/list.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/manager.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/manager.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/separator.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/separator.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/common.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/common.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/confirm.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/confirm.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/password.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/password.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/checkbox.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/checkbox.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/rawlist.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/rawlist.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/expand.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/expand.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/editor.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/editor.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.py -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.py -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Wrote to a file -Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Wrote to a file -Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html -Timestamp: Tuesday, June 16, 2020 22:19:00 - -wrote skoolos.html -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 -Timestamp: Tuesday, June 16, 2020 22:19:00 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:01 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:02 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:03 -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:03 - - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:03 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:04 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:05 -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:05 - - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Created file -Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Created file -Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Created file -Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Created file -Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Created file -Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Created file -Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 -Timestamp: Tuesday, June 16, 2020 22:19:05 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:06 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:07 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:19:07 - diff --git a/SkoolOS/logs/skoolos_06162020-222011 b/SkoolOS/logs/skoolos_06162020-222011 deleted file mode 100644 index 608faeb..0000000 --- a/SkoolOS/logs/skoolos_06162020-222011 +++ /dev/null @@ -1,4352 +0,0 @@ -Start time: Tuesday, June 16, 2020 22:20:13 - -Event: Created file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html -Timestamp: Tuesday, June 16, 2020 22:20:13 - -wrote bgservice.run.html -Event: Wrote to a file -Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/docs -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/docs -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/env -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/env -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/__pycache__/skoolos.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connectionpool.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/six.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/wait.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/ssl_.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/url.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/timeout.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/retry.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/_collections.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/filepost.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/queue.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/poolmanager.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/socks.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_auth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/common.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/parameters.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/signature.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/request_validator.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/errors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/request_token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/authorization.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/access_token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/resource.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/signature_only.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/pre_configured.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_session.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_auth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/authorization.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/errors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/introspect.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/metadata.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/revocation.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/authorization_code.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/uri_validate.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/request_validator.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/implicit.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/resource_owner_password_credentials.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/client_credentials.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/refresh_token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/resource.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/pre_configured.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/tokens.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/parameters.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/signals.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/web_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/mobile_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/legacy_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/backend_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/service_application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_session.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/desired_capabilities.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/command.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webelement.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/by.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/keys.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/getAttribute.js -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/isDisplayed.js -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/errorhandler.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/switch_to.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/alert.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/mobile.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/file_detector.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/application_cache.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/extension_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_binary.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_profile.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/proxy.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webelement.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/remote_connection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/ui.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/select.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/wait.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/webdriver.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/service.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/options.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/action_chains.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/action_builder.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/interaction.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_actions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/input_device.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_actions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/mouse_button.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/touch_actions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/serving.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_compat.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_internal.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/urls.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/core.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_compat.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_unicodefun.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/exceptions.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/globals.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/formatting.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/parser.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/termui.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/types.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/decorators.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/test.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/datastructures.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/filesystem.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/http.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/accept.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/auth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/formparser.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/wsgi.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/common_descriptors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/etag.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/request.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/cors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/user_agent.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/useragents.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/response.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/interface.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/__pycache__/six.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/application.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/auto_suggest.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/wcwidth.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_wide.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_zero.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/version.json -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/cli.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/enums.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/vi_state.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/cache.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/types.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/selection.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/in_memory.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/completion.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/document.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/history.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/search_state.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/validation.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer_mapping.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/basic.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/keys.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/containers.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/controls.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/mouse_events.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/token.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/lexers.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/processors.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/reactive.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/screen.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/dimension.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/margins.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/renderer.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/mouse_handlers.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/output.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/defaults.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_dict.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_pygments.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/style.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/plugin.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/util.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/default.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/named_commands.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/completion.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/registry.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/input_processor.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/emacs.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/scroll.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/vi.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/digraphs.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/defaults.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/base.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/callbacks.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/shortcuts.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/menus.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:13 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/prompt.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/toolbars.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/lexer.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/filter.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/filters/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/regexopt.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_output.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/utils.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/_mapping.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/modeline.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/_mapping.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/prompt.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/__init__.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/list.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/manager.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/separator.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/common.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/confirm.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/input.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/password.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/checkbox.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/rawlist.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/expand.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/editor.cpython-38.pyc -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.py -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Created file -Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html -Timestamp: Tuesday, June 16, 2020 22:20:14 - -wrote skoolos.html -Event: Wrote to a file -Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:14 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:15 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:16 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:17 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:18 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:18 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:18 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:18 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:18 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:18 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:19 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:19 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:19 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:19 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:19 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:19 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:19 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:19 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:19 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:19 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:20 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:21 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:22 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:23 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:24 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:25 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:26 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:27 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/05948b8e1bbcfa9b_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/05948b8e1bbcfa9b_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/05948b8e1bbcfa9b_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/a2af0a74ac00da17_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/435bea09f3fc7c08_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/cb3090f86ae511a5_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/6a8f9287d9f02656_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/a2af0a74ac00da17_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2d1d7ad0db168fa0_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/435bea09f3fc7c08_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/7c07a3817a7e00b1_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/cb3090f86ae511a5_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/52240efdbde06a1c_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/6a8f9287d9f02656_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9d7a4f5e80410c52_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2d1d7ad0db168fa0_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/7c07a3817a7e00b1_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c4834e66e88c988a_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f433aaae5c4fe52d_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/cb54c95eaf74ea81_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/096c00ab306c3bdd_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/52240efdbde06a1c_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/12c2900e7638b9db_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2ba37d7df687aeb1_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9d7a4f5e80410c52_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a7c29e607589e31b_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/096c00ab306c3bdd_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/12c2900e7638b9db_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c4834e66e88c988a_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/cb54c95eaf74ea81_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f433aaae5c4fe52d_0 -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal -Timestamp: Tuesday, June 16, 2020 22:20:28 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2ba37d7df687aeb1_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a7c29e607589e31b_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a2af74e4706fbd24_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a2af74e4706fbd24_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/390e083c2839df39_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/390e083c2839df39_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0a446fad2a1eaaa0_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0a446fad2a1eaaa0_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0cd5a31285ad956d_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0cd5a31285ad956d_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0a446fad2a1eaaa0_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e15658981a2d3018_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e15658981a2d3018_0 -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:29 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/4fa4c7b63bce7d9c_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/4fa4c7b63bce7d9c_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/4fa4c7b63bce7d9c_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0cd5a31285ad956d_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2.png -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2_2x.png -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/42ab56d467a07f6a_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/42ab56d467a07f6a_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/42ab56d467a07f6a_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.local/share/fonts/3270Medium.ttf -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/40bc73561fb6e32e_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/40bc73561fb6e32e_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/49eae51421567809_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ee745d868505b427_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e0d24440cd5ad5a4_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/69c8b15791443df3_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/69c8b15791443df3_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/49eae51421567809_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ee745d868505b427_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e0d24440cd5ad5a4_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/40bc73561fb6e32e_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/69c8b15791443df3_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/5478bf006fcfece0_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/5478bf006fcfece0_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/5478bf006fcfece0_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/8eab70ead1f0cf46_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/8eab70ead1f0cf46_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/8eab70ead1f0cf46_0 -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:30 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/238dc390af8bc0d7_0 -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/238dc390af8bc0d7_0 -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/238dc390af8bc0d7_0 -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Created file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Moved a file out -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Moved a file in -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Local State -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:31 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/9cbe424460ad9eef_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/9cbe424460ad9eef_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3dfdc4e22d2583ff_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3dfdc4e22d2583ff_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/9cbe424460ad9eef_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3dfdc4e22d2583ff_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/5738cc1400b2aa35_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/5738cc1400b2aa35_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/be0e3cea605a0958_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/be0e3cea605a0958_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/5738cc1400b2aa35_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ff8dc3248d4842c1_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ff8dc3248d4842c1_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ff8dc3248d4842c1_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/be0e3cea605a0958_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f087bbfad7bbe9ed_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f087bbfad7bbe9ed_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f087bbfad7bbe9ed_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/bd48bf9e17e30697_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/bd48bf9e17e30697_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/bd48bf9e17e30697_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ba6e548b5340f9b2_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ba6e548b5340f9b2_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0f6fa61c744ef5ae_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0f6fa61c744ef5ae_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/22e91b159dd4af8b_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/22e91b159dd4af8b_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0dd22180e0b6c8da_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0dd22180e0b6c8da_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9e850d1e72e0d9de_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9e850d1e72e0d9de_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a1f9c2fa3c329ea9_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/20b36a2112c940c9_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2dc893ceb65f3f87_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a1f9c2fa3c329ea9_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2dc893ceb65f3f87_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/20b36a2112c940c9_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2e327219389cbede_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2e327219389cbede_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2e327219389cbede_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0dd22180e0b6c8da_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b0e7dede16083f40_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b0e7dede16083f40_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b0e7dede16083f40_0 -Timestamp: Tuesday, June 16, 2020 22:20:32 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ba6e548b5340f9b2_0 -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0f6fa61c744ef5ae_0 -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/22e91b159dd4af8b_0 -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2.png -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2_2x.png -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ccaa7620d40c9e4e_0 -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ccaa7620d40c9e4e_0 -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ccaa7620d40c9e4e_0 -Timestamp: Tuesday, June 16, 2020 22:20:33 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:34 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:35 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:36 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3e7e8f8b8f2d4c7a_0 -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3e7e8f8b8f2d4c7a_0 -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3e7e8f8b8f2d4c7a_0 -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Created file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/1de9a8455f72e8db_0 -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/1de9a8455f72e8db_0 -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Moved a file out -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/1de9a8455f72e8db_0 -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Moved a file in -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_1de9a8455f72e8db_0_1 -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Deleted file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_1de9a8455f72e8db_0_1 -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Wrote to a file -Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_1de9a8455f72e8db_0_1 -Timestamp: Tuesday, June 16, 2020 22:20:37 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/.config/pulse/cookie -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/memusage -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/swapusage -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/cpuload -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/scripts/diskused -Timestamp: Tuesday, June 16, 2020 22:20:38 - -Event: Opened file -Event Path: /home/nkenschaft/.Xauthority -Timestamp: Tuesday, June 16, 2020 22:20:38 - diff --git a/SkoolOS/logs/skooloslog b/SkoolOS/logs/skooloslog new file mode 100644 index 0000000..36e598d --- /dev/null +++ b/SkoolOS/logs/skooloslog @@ -0,0 +1,416690 @@ +Start time: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI/__pycache__/student.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/pyperclip/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/db.sqlite3 +Timestamp: Tuesday, June 16, 2020 23:36:52 + +{'url': 'http://127.0.0.1:8000/api/students/rushilwiz/', 'grade': 69, 'log': '', 'ion_user': 'rushilwiz', 'git': 'rushilwiz', 'user': 1, 'classes': 'wow4_sstern1', 'added_to': '', 'completed': 'rushilwiz/Hailstone,rushilwiz/Hailstone,', 'repo': 'https://github.com/rushilwiz/rushilwiz.git'} +200 +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/Website/db.sqlite3 +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/db.sqlite3 +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/Website/db.sqlite3 +Timestamp: Tuesday, June 16, 2020 23:36:52 + +GET:200 +Synced to rushilwiz +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/b8/0d7ed56b7d649a74be4e7f906d26e7be43702d +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Created file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/f9/3e3a1a1525fb5b91020da86e44810c87a2d7bc +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Moved a file out +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Moved a file in +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Created file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/logs/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/logs/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Moved a file out +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Moved a file in +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/master +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/master +Timestamp: Tuesday, June 16, 2020 23:36:52 + +UPDATING CLASS: wow4_sstern1 +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/db.sqlite3 +Timestamp: Tuesday, June 16, 2020 23:36:52 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/Website/db.sqlite3 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +GET:200 +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/b8/0d7ed56b7d649a74be4e7f906d26e7be43702d +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Created file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/f9/3e3a1a1525fb5b91020da86e44810c87a2d7bc +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/0e/bebe91ef4984040885374d3ac3d2c294beb0c6 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/da/1d31c19f08ca9b26f9bbf7e18ffcf494aac613 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Created file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/81/67787126ffa2cbd8532285f178099ba2a2b9cc +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/81/67787126ffa2cbd8532285f178099ba2a2b9cc +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/e6/2b53d0c2387873e64fa3fd0a4e81140e1295a3 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Moved a file out +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Moved a file in +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Created file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/logs/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/logs/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Moved a file out +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Moved a file in +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/aa/6ce33d5bcdabbab46fbeb3a77578e1669edc4c +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Created file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Moved a file out +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Moved a file in +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Created file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Moved a file out +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Moved a file in +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/COMMIT_EDITMSG +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/0e/bebe91ef4984040885374d3ac3d2c294beb0c6 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/COMMIT_EDITMSG +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/aa/6ce33d5bcdabbab46fbeb3a77578e1669edc4c +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/b8/0d7ed56b7d649a74be4e7f906d26e7be43702d +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/0e/bebe91ef4984040885374d3ac3d2c294beb0c6 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/FETCH_HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/FETCH_HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz/Hailstone-final +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/aa/6ce33d5bcdabbab46fbeb3a77578e1669edc4c +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz/Hailstone-final +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/b8/0d7ed56b7d649a74be4e7f906d26e7be43702d +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/b8/0d7ed56b7d649a74be4e7f906d26e7be43702d +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/aa/6ce33d5bcdabbab46fbeb3a77578e1669edc4c +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/aa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/aa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/FETCH_HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/aa/6ce33d5bcdabbab46fbeb3a77578e1669edc4c +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz/Hailstone-final +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/b8/0d7ed56b7d649a74be4e7f906d26e7be43702d +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/b8/0d7ed56b7d649a74be4e7f906d26e7be43702d +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/aa/6ce33d5bcdabbab46fbeb3a77578e1669edc4c +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/aa/6ce33d5bcdabbab46fbeb3a77578e1669edc4c +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/aa/6ce33d5bcdabbab46fbeb3a77578e1669edc4c +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/FETCH_HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/0e/bebe91ef4984040885374d3ac3d2c294beb0c6 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/FETCH_HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/FETCH_HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/aa/6ce33d5bcdabbab46fbeb3a77578e1669edc4c +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/b8/0d7ed56b7d649a74be4e7f906d26e7be43702d +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Created file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/ORIG_HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/ORIG_HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/ORIG_HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Moved a file out +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/ORIG_HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Moved a file in +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/ORIG_HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/master +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/tags/rushilwiz/Hailstone-final +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.Xauthority +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.config/kdeglobals +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.config/baloofilerc +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.config/kdeglobals +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.config/baloofilerc +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.local/share/baloo/index-lock +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/.local/share/baloo/index +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:53 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Wrote to a file +Event Path: /home/rushilwiz/.local/share/baloo/index +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Wrote to a file +Event Path: /home/rushilwiz/.local/share/baloo/index-lock +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:54 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Created file +Event Path: /home/rushilwiz/.config/discord/Cache/c21c91a0684bc4bc_0 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/Cache/c21c91a0684bc4bc_0 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Moved a file out +Event Path: /home/rushilwiz/.config/discord/Cache/c21c91a0684bc4bc_0 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Moved a file in +Event Path: /home/rushilwiz/.config/discord/Cache/todelete_c21c91a0684bc4bc_0_1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Deleted file +Event Path: /home/rushilwiz/.config/discord/Cache/todelete_c21c91a0684bc4bc_0_1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Wrote to a file +Event Path: /home/rushilwiz/.config/discord/Cache/todelete_c21c91a0684bc4bc_0_1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Deleted file +Event Path: /home/rushilwiz/.config/discord/Cache/1f9c4d6496bd7c70_0 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Created file +Event Path: /home/rushilwiz/.config/discord/Cache/1f9c4d6496bd7c70_0 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/Cache/1f9c4d6496bd7c70_0 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Wrote to a file +Event Path: /home/rushilwiz/.config/discord/Cache/1f9c4d6496bd7c70_0 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:55 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/b8/0d7ed56b7d649a74be4e7f906d26e7be43702d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/d9/cbcc1e6dd8907bf856f30b4565018e48934abf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Created file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/0e/bebe91ef4984040885374d3ac3d2c294beb0c6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/f9/3e3a1a1525fb5b91020da86e44810c87a2d7bc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/objects/da/1d31c19f08ca9b26f9bbf7e18ffcf494aac613 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Deleted file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Moved a file out +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Moved a file in +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Created file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/logs/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/logs/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Moved a file out +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Moved a file in +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/remotes/origin/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/.gitconfig +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/packed-refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/stash +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack/pack-d1adb00474cc615655698dfb33719bf9b678cabc.idx +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2a/99716650636cc5289863a0ca7b82d4e7c51916 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/development +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/development +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/development +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/development +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8b/11e2defea43b10b84882e00245cfe3e2cd268e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Created file +Event Path: /home/rushilwiz/SkoolOS/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/index +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/2023rumareti/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/2023rumareti/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/rushilwiz/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/2023rumareti/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/2023rumareti/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/34/417964e2f9ec45732f61bc0c50a38831d547b7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/02/eb799df5790c8eb8eb170b0f4534dcd96c80dd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/79/90ca8f08e3212f3882683708964ccaaec7d301 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ea/0ca5f40f5fe8344e23ce2efd69e03a84c32dd6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/da/53f2d53de3a2af3b192399acec12c1bbdcbfcc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/45/ec92a7429fce8ba4f6a0669209d3a22ab71dcf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8a/3401041f561a179fb1383ebea5e1f6f2c04121 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/58/8b486b443dc3c7db60af4fc5f14fc1ea474a50 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b5/0c54b940fc11432ba3718efb029d952ddd8d72 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/be/a2956bb3931321369e46eb50b5e5811853556e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bc/8c19eee5ae4add2848f0f7785b91102c906616 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d7/c62ec63a1200f0483bbfb52dc78c75943f4f38 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f3/399ad643f9a159084264466b021f0cd2e485d6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/47/f77bc93ccf9bbba3c0dff6a84d2d00104c5cdb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e5/69f468d21ea786c173a725473a6a75f9b4dcae +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/da/ceaac99fd531f11bc6fd7e9e1f8379ccbec460 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e1/e5fc9a5bb8ed1f77deeb5f625fd10c5b8f838b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dc/3f99e0ff486d0b1cf35312431f8b7f310930ec +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/90/9cc803496827903c811d80d30bde7a834f7650 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f9/3e3a1a1525fb5b91020da86e44810c87a2d7bc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9e/35e1c1020405f31ec37c7253d9a9c1099f42c9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f6/7a2951cf4dc5bd9682a0a115c1c1ff35b2b546 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/90/ad4531b9e28f4b950dc5beae2d8fcfc222efb5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/50/f11c10d12677d6c364a78b79a090a8b27d04a0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/13/5a6b7d2bb91ec0884203b8bbb298ef2e48f5e7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/06/a1be690dcae1a978b5126f247d6418b8d51b26 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/rushilwiz/.git/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/rushilwiz/.git/refs/heads/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/82/511ee987cc56dd4d6cf0564eab63a3e13b9109 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f9/3e3a1a1525fb5b91020da86e44810c87a2d7bc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f9/0c41e32c0a64280f531b221b1c82cd5f504d3c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bd/21a53e1446b1c46d613e83ec76808807635501 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Wrote to a file +Event Path: /home/rushilwiz/SkoolOS/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Deleted file +Event Path: /home/rushilwiz/SkoolOS/.git/index.lock +Timestamp: Tuesday, June 16, 2020 23:36:56 + +/home/rushilwiz/SkoolOS +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/branches +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/branches +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/hooks +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/hooks +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/41 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/41 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/96 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/96 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/40 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/40 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/25 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/25 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/13 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/13 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/04 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/04 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/75 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/75 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/74 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/74 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/28 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/28 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/08 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/08 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/86 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/86 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/30 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/30 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ea +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ea +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ec +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ec +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/12 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/12 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ba +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ba +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fe +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fe +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/80 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/80 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/03 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/03 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/31 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/31 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/60 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/60 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ad +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ad +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/37 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/37 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/11 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/11 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/43 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/43 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/14 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/14 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/47 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/47 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/eb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/eb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/38 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/38 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/92 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/92 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/df +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/df +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/94 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/94 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/61 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/61 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/49 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/49 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/45 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/45 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/54 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/54 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/53 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/53 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/82 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/82 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/35 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/35 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/71 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/71 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/85 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/85 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/84 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/84 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/02 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/02 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/79 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/79 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/19 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/19 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/32 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/32 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/10 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/10 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/91 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/91 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/64 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/64 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/67 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/67 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/50 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/50 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/78 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/78 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ed +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ed +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/99 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/99 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/95 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/95 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/57 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/57 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/16 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/16 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/69 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/69 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/29 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/29 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/59 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/59 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ef +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ef +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ee +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ee +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ae +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ae +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/65 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/65 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/09 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/09 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/00 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/00 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/97 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/97 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/98 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/98 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/90 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/90 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/17 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/17 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/68 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/68 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/27 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/27 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/77 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/77 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ce +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ce +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/51 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/51 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/76 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/76 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/aa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/aa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/18 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/18 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/87 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/87 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/20 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/20 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/15 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/15 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/06 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/06 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/58 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/58 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/70 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/70 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/44 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/44 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/07 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/07 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/23 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/23 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/46 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/46 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/36 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/36 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/33 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/33 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/34 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/34 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/39 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/39 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/26 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/26 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/48 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/48 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/81 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/81 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/24 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/24 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/83 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/83 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/01 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/01 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/db +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/db +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ff +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ff +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/21 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/21 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/52 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/52 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/89 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/89 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/88 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/88 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/72 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/72 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/42 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/42 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/22 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/22 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/63 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/63 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ac +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ac +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/62 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/62 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/55 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/55 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/56 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/56 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/05 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/05 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/73 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/73 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/66 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/66 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/development +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin/development +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/branches +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/branches +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/hooks +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/hooks +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/41 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/41 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/96 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/96 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/40 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/40 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/25 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/25 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/13 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/13 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/04 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/04 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/75 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/75 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/74 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/74 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/28 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/28 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/08 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/08 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/86 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/86 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/30 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/30 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ea +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ea +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ec +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ec +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/12 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/12 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ba +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ba +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fe +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fe +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/80 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/80 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/03 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/03 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/31 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/31 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/60 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/60 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ad +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ad +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/37 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/37 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/11 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/11 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/43 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/43 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/14 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/14 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/47 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/47 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/eb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/eb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/38 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/38 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/92 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/92 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/df +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/df +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/94 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/94 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/61 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/61 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/49 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/49 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/45 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/45 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/54 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/54 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/53 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/53 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/82 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/82 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/35 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/35 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/71 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/71 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/85 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/85 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/84 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/84 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/02 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/02 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/79 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/79 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/19 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/19 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/32 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/32 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/10 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/10 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/91 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/91 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/64 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/64 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/67 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/67 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/50 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/50 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/78 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/78 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ed +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ed +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/99 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/99 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/95 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/95 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/57 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/57 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/16 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/16 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/69 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/69 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/29 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/29 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/59 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/59 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ef +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ef +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ee +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ee +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ae +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ae +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/65 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/65 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/09 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/09 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/00 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/00 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/97 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/97 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/98 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/98 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/90 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/90 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/17 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/17 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/68 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/68 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/27 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/27 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/77 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/77 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ce +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ce +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/51 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/51 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/76 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/76 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/aa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/aa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/18 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/18 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/87 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/87 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/20 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/20 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/15 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/15 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/06 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/06 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/58 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/58 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/70 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/70 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/44 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/44 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/07 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/07 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/23 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/23 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/46 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/46 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/36 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/36 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/33 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/33 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/34 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/34 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/39 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/39 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/26 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/26 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/48 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/48 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/81 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/81 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/24 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/24 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/83 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/83 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/01 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/01 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/db +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/db +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ff +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ff +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/21 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/21 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/52 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/52 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/89 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/89 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/88 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/88 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/72 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/72 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/42 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/42 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/22 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/22 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/63 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/63 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ac +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ac +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/62 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/62 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/55 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/55 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/56 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/56 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/05 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/05 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/73 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/73 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/66 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/66 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/development +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin/development +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/branches +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/branches +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/hooks +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/hooks +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/41 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/41 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/96 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/96 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/40 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/40 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/25 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/25 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/13 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/13 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/04 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/04 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/75 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/75 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/74 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/74 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/28 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/28 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/08 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/08 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/86 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/86 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/30 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/30 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ea +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ea +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ec +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ec +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/12 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/12 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ba +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ba +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fe +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fe +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/80 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/80 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/03 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/03 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/31 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/31 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/60 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/60 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ad +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ad +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/37 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/37 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/11 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/11 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/43 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/43 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/14 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/14 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/47 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/47 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/eb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/eb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/38 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/38 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/92 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/92 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/df +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/df +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/94 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/94 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/61 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/61 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/49 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/49 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/45 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/45 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/54 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/54 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/53 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/53 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/dd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/82 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/82 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/35 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/35 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/71 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/71 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/85 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/85 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/84 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/84 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/02 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/02 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/79 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/79 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/19 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/19 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/32 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/32 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/10 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/10 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/91 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/91 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/64 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/64 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/67 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/67 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/50 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/50 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/78 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/78 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ed +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ed +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/99 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/99 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/95 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/95 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/57 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/57 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/16 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/16 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d3 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/69 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/69 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/29 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/29 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/59 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/59 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ef +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ef +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ee +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ee +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ae +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ae +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/65 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/65 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/09 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/09 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/bc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/info +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e0 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/00 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/00 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/97 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/97 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/98 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/98 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/9d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/90 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/90 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b8 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/17 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/17 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cc +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/68 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/68 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/27 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/27 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/77 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/77 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ce +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ce +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/51 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/51 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/76 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/76 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/aa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/aa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/18 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/18 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/87 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/87 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/20 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/20 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/15 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/15 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/06 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/06 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/58 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/58 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/70 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/70 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/1f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/44 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/44 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/2f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/07 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/07 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/3f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/23 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/23 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c6 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/f1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/b4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/46 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/46 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/36 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/36 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/a4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/33 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/33 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/34 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/34 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8d +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/39 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/39 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/cf +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/26 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/26 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/48 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/48 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e5 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/81 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/81 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/24 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/24 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/d4 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/e9 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/83 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/83 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/01 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/01 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/db +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/db +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4a +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ff +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ff +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/4c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/21 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/21 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/52 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/52 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/89 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/89 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/88 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/88 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/72 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/72 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/0b +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/42 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/42 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/7e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/5f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6c +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/22 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/22 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/63 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/63 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ac +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/ac +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/62 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/62 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c7 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/55 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/55 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/c2 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/8e +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/56 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/56 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/05 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/05 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/73 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/73 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/66 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/66 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/objects/6f +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/tags +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/heads +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/logs/refs/remotes/origin +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin/HEAD +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/development +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin/master +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin/development +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:56 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:57 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Exit SkoolOS +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:58 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:36:59 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:00 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:01 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:02 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:03 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:04 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Created file +Event Path: /home/rushilwiz/.config/discord/.org.chromium.Chromium.flU2f0 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/.org.chromium.Chromium.flU2f0 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Wrote to a file +Event Path: /home/rushilwiz/.config/discord/.org.chromium.Chromium.flU2f0 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/.org.chromium.Chromium.flU2f0 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Wrote to a file +Event Path: /home/rushilwiz/.config/discord/.org.chromium.Chromium.flU2f0 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Moved a file out +Event Path: /home/rushilwiz/.config/discord/.org.chromium.Chromium.flU2f0 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Moved a file in +Event Path: /home/rushilwiz/.config/discord/TransportSecurity +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/.cache/chromium/Default/Cache/ea0103983aae44bb_0 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:05 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Wrote to a file +Event Path: /home/rushilwiz/.cache/chromium/Default/Cache/ea0103983aae44bb_0 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:06 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:07 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:08 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:09 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/.config/chromium/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/.config/chromium/Default +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/.config/chromium/Default +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:10 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Wrote to a file +Event Path: /home/rushilwiz/.config/chromium/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:11 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:12 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:13 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:14 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Created file +Event Path: /home/rushilwiz/.config/discord/Cache/index-dir/temp-index +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/Cache/index-dir/temp-index +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Wrote to a file +Event Path: /home/rushilwiz/.config/discord/Cache/index-dir/temp-index +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Moved a file out +Event Path: /home/rushilwiz/.config/discord/Cache/index-dir/temp-index +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Moved a file in +Event Path: /home/rushilwiz/.config/discord/Cache/index-dir/the-real-index +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Created file +Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.TB7nVI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.TB7nVI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Wrote to a file +Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.TB7nVI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.TB7nVI +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:15 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Wrote to a file +Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.TB7nVI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Moved a file out +Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.TB7nVI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Moved a file in +Event Path: /home/rushilwiz/.config/chromium/Default/TransportSecurity +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/auth/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa_IR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/it/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/uk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/be/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el_GR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ach/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/cs/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_AU/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ro/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_PT/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ar/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hans/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/da/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_CN/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nb/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/he_IL/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/tr_TR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt_BR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en_US/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_TW/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/en/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/zh_Hant/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/hu/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/lv/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/el/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/es/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/no/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fa/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/de/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ru/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl_ES/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/sl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nn/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/gl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/pt/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/vi/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ca/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/mk/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/nl/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/fr_CA/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/et/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ko_KR/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/ja/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/.venv/lib/python3.8/site-packages/rest_framework/locale/id/LC_MESSAGES +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/.gitignore +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/chromedriver +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/CLI +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/config +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +Event: Opened file +Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +Timestamp: Tuesday, June 16, 2020 23:37:16 + +good +End time: Tuesday, June 16, 2020 23:37:16 + +Total work time: 00:00:28 + +109 suspicious commands found: +git migrate +git status +git add . +git commit -m "Creates Student/Teacher on User creation" +git pull +git push +git push +git push +git push +git push +git add . +git status +git commit -m "Basic interface created" +git pull +wget -P . https://github.com/shvchk/fallout-grub-theme/raw/master/install.sh +git status +git add . +git pull +git commit -m "Changed Teacher/Class models" +git pull +git pull +git status +nano .gitignore +git status +nano .gitignore +git status +git add . +git commit -m "Fixed some files that broke over merge" +git push +git status +git commit -m "Updated class model and created class detail view" +git add . +git commit -m "Updated class model and created class detail view" +git pull +git pull +git status +git commit -m "fixed student" +git add . +git commit -m "fixed student" +git push +git push +git status +git add . +git commit -m "Added profile view and class detail" +git pull +git pull +git status +git add requirements.txt +git commit -m "removed bad deps" +git pull +git push +git status +git add Website/skoolos/views.py +git commit -m "added teacher support" +git pull +git stash Website/api/models.py +git stash save Website/api/models.py +git pull +git push +git push +git push +git stash list +git stash apply +git stash apply +git stash apply +git pull +git status +git@gitlab.tjhsst.edu:understudyathon-2020/group-1/skoolos.git +git clone git@gitlab.tjhsst.edu:understudyathon-2020/group-1/skoolos.git +git pull +git status +git pull --rebase +git status +git status +git commit -m "chilled the dependencies" +git add . +git commit -m "chilled the dependencies" +git pull --rebase +git push +git status +git status +git add . +git commit -m "started ReadTheDocs" +git pull +git pull +git status +git push +git status +git commit -m "removed theme in conf" +git add . +git commit -m "removed theme in conf" +git pull +git push +git push +git remote -v +git git remote -v +git remote -v +git remote set-url origin https://github.com/rushilwiz/SkoolOS +git remote -v +git pull +git status +git add . +git commit -m "remade sphinx w/ source and build seperate +git pull +git push +git add . +git status +git commit -m "created initial files for docs +git pull + + +-------------------------------------------------- + + +WARNING: One or more file did not have file extensions that are acceptable. +The paths to these files are listed below: + +/home/rushilwiz/ion +/home/rushilwiz/ctf +/home/rushilwiz/Music +/home/rushilwiz/Projects +/home/rushilwiz/Pictures +/home/rushilwiz/SkoolOS +/home/rushilwiz/Templates +/home/rushilwiz/id_gitlab.pub +/home/rushilwiz/Downloads +/home/rushilwiz/idafree-7.0 +/home/rushilwiz/Public +/home/rushilwiz/Documents +/home/rushilwiz/id_gitlab +/home/rushilwiz/VirtualBox VMs +/home/rushilwiz/crucialnet +/home/rushilwiz/webserver.pub +/home/rushilwiz/Desktop +/home/rushilwiz/webserver +/home/rushilwiz/Videos +/home/rushilwiz/brancher +/home/rushilwiz/ion/migrations +/home/rushilwiz/ion/Ion.egg-info +/home/rushilwiz/ion/setup.py +/home/rushilwiz/ion/SECURITY.md +/home/rushilwiz/ion/manage.py +/home/rushilwiz/ion/CONTRIBUTING.md +/home/rushilwiz/ion/docs +/home/rushilwiz/ion/Vagrantfile +/home/rushilwiz/ion/fabfile.py +/home/rushilwiz/ion/deploy +/home/rushilwiz/ion/intranet +/home/rushilwiz/ion/cron +/home/rushilwiz/ion/COPYING +/home/rushilwiz/ion/pyproject.toml +/home/rushilwiz/ion/scripts +/home/rushilwiz/ion/README.rst +/home/rushilwiz/ion/config +/home/rushilwiz/ion/migrations/__init__.py +/home/rushilwiz/ion/Ion.egg-info/PKG-INFO +/home/rushilwiz/ion/docs/setup +/home/rushilwiz/ion/docs/administration +/home/rushilwiz/ion/docs/_static +/home/rushilwiz/ion/docs/_ext +/home/rushilwiz/ion/docs/developing +/home/rushilwiz/ion/docs/architecture +/home/rushilwiz/ion/docs/_templates +/home/rushilwiz/ion/docs/sourcedoc +/home/rushilwiz/ion/docs/conf.py +/home/rushilwiz/ion/docs/index.rst +/home/rushilwiz/ion/docs/setup/vagrant.rst +/home/rushilwiz/ion/docs/setup/postinstall.rst +/home/rushilwiz/ion/docs/setup/server.rst +/home/rushilwiz/ion/docs/setup/index.rst +/home/rushilwiz/ion/docs/administration/index.rst +/home/rushilwiz/ion/docs/_static/custom.css +/home/rushilwiz/ion/docs/_ext/djangodocs.py +/home/rushilwiz/ion/docs/developing/eighth-models.rst +/home/rushilwiz/ion/docs/developing/howto.rst +/home/rushilwiz/ion/docs/developing/updates.rst +/home/rushilwiz/ion/docs/developing/oauth.rst +/home/rushilwiz/ion/docs/developing/styleguide.rst +/home/rushilwiz/ion/docs/developing/requirements.rst +/home/rushilwiz/ion/docs/developing/testing.rst +/home/rushilwiz/ion/docs/developing/index.rst +/home/rushilwiz/ion/docs/architecture/index.rst +/home/rushilwiz/ion/docs/_templates/relations.html +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.views.admin.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.views.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dashboard.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.preferences.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.welcome.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.lostfound.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.oauth.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.signage.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dataimport.management.commands.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.schedule.management.commands.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.features.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.itemreg.templatetags.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.polls.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.files.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.seniors.management.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.feedback.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.api.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.announcements.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.auth.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.seniors.management.commands.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.emerg.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.forms.admin.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.signage.templatetags.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.sessionmgmt.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.schedule.management.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.bus.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.error.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.auth.management.commands.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.seniors.rst +/home/rushilwiz/ion/docs/sourcedoc/modules.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.management.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.nomination.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.notifications.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.schedule.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.test.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.itemreg.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.emailfwd.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.groups.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.management.commands.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.settings.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.events.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.search.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.forms.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.management.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.management.commands.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.printing.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.middleware.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.templatetags.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.parking.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dataimport.management.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dataimport.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.templatetags.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.auth.management.rst +/home/rushilwiz/ion/docs/sourcedoc/intranet.utils.rst +/home/rushilwiz/ion/intranet/wsgi.py +/home/rushilwiz/ion/intranet/celery.py +/home/rushilwiz/ion/intranet/__init__.py +/home/rushilwiz/ion/intranet/settings +/home/rushilwiz/ion/intranet/routing.py +/home/rushilwiz/ion/intranet/utils +/home/rushilwiz/ion/intranet/middleware +/home/rushilwiz/ion/intranet/test +/home/rushilwiz/ion/intranet/apps +/home/rushilwiz/ion/intranet/static +/home/rushilwiz/ion/intranet/asgi.py +/home/rushilwiz/ion/intranet/urls.py +/home/rushilwiz/ion/intranet/templates +/home/rushilwiz/ion/intranet/settings/__init__.py +/home/rushilwiz/ion/intranet/settings/secret.sample +/home/rushilwiz/ion/intranet/settings/travis_secret.py +/home/rushilwiz/ion/intranet/utils/__init__.py +/home/rushilwiz/ion/intranet/utils/helpers.py +/home/rushilwiz/ion/intranet/utils/date.py +/home/rushilwiz/ion/intranet/utils/serialization.py +/home/rushilwiz/ion/intranet/utils/locking.py +/home/rushilwiz/ion/intranet/utils/admin_helpers.py +/home/rushilwiz/ion/intranet/utils/deletion.py +/home/rushilwiz/ion/intranet/utils/cache.py +/home/rushilwiz/ion/intranet/utils/html.py +/home/rushilwiz/ion/intranet/utils/session.py +/home/rushilwiz/ion/intranet/middleware/__init__.py +/home/rushilwiz/ion/intranet/middleware/session_management.py +/home/rushilwiz/ion/intranet/middleware/threadlocals.py +/home/rushilwiz/ion/intranet/middleware/monitoring.py +/home/rushilwiz/ion/intranet/middleware/dark_mode.py +/home/rushilwiz/ion/intranet/middleware/templates.py +/home/rushilwiz/ion/intranet/middleware/profiler.py +/home/rushilwiz/ion/intranet/middleware/traceback.py +/home/rushilwiz/ion/intranet/middleware/access_log.py +/home/rushilwiz/ion/intranet/middleware/url_slashes.py +/home/rushilwiz/ion/intranet/middleware/ajax.py +/home/rushilwiz/ion/intranet/middleware/same_origin.py +/home/rushilwiz/ion/intranet/test/__init__.py +/home/rushilwiz/ion/intranet/test/data +/home/rushilwiz/ion/intranet/test/ion_test.py +/home/rushilwiz/ion/intranet/test/stubs +/home/rushilwiz/ion/intranet/test/test_suite.py +/home/rushilwiz/ion/intranet/test/data/awilliam.json +/home/rushilwiz/ion/intranet/test/stubs/wsgiref +/home/rushilwiz/ion/intranet/test/stubs/requests_oauthlib.pyi +/home/rushilwiz/ion/intranet/test/stubs/ldap3 +/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider +/home/rushilwiz/ion/intranet/test/stubs/pip +/home/rushilwiz/ion/intranet/test/stubs/simple_history +/home/rushilwiz/ion/intranet/test/stubs/ldap_test.pyi +/home/rushilwiz/ion/intranet/test/stubs/dateutil +/home/rushilwiz/ion/intranet/test/stubs/cacheops.pyi +/home/rushilwiz/ion/intranet/test/stubs/fabric +/home/rushilwiz/ion/intranet/test/stubs/corsheaders +/home/rushilwiz/ion/intranet/test/stubs/formtools +/home/rushilwiz/ion/intranet/test/stubs/reportlab +/home/rushilwiz/ion/intranet/test/stubs/maintenancemode +/home/rushilwiz/ion/intranet/test/stubs/paramiko +/home/rushilwiz/ion/intranet/test/stubs/icalendar.pyi +/home/rushilwiz/ion/intranet/test/stubs/unittest +/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar +/home/rushilwiz/ion/intranet/test/stubs/django +/home/rushilwiz/ion/intranet/test/stubs/pexpect.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework +/home/rushilwiz/ion/intranet/test/stubs/raven +/home/rushilwiz/ion/intranet/test/stubs/pstats.pyi +/home/rushilwiz/ion/intranet/test/stubs/magic.pyi +/home/rushilwiz/ion/intranet/test/stubs/pysftp.pyi +/home/rushilwiz/ion/intranet/test/stubs/bleach +/home/rushilwiz/ion/intranet/test/stubs/Crypto +/home/rushilwiz/ion/intranet/test/stubs/cProfile.pyi +/home/rushilwiz/ion/intranet/test/stubs/gssapi.pyi +/home/rushilwiz/ion/intranet/test/stubs/setuptools +/home/rushilwiz/ion/intranet/test/stubs/wsgiref/util.pyi +/home/rushilwiz/ion/intranet/test/stubs/wsgiref/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils +/home/rushilwiz/ion/intranet/test/stubs/ldap3/protocol +/home/rushilwiz/ion/intranet/test/stubs/ldap3/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/ldap3/core +/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils/conv.pyi +/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils/dn.pyi +/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/ldap3/protocol/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/ldap3/protocol/sasl.pyi +/home/rushilwiz/ion/intranet/test/stubs/ldap3/core/exceptions.pyi +/home/rushilwiz/ion/intranet/test/stubs/ldap3/core/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/settings.pyi +/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/views +/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/models.pyi +/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/middleware.pyi +/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/views/application.pyi +/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/views/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/pip/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/pip/download.pyi +/home/rushilwiz/ion/intranet/test/stubs/pip/req +/home/rushilwiz/ion/intranet/test/stubs/pip/req/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/pip/req/req_file.pyi +/home/rushilwiz/ion/intranet/test/stubs/simple_history/admin.pyi +/home/rushilwiz/ion/intranet/test/stubs/simple_history/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/simple_history/models.pyi +/home/rushilwiz/ion/intranet/test/stubs/simple_history/middleware.pyi +/home/rushilwiz/ion/intranet/test/stubs/dateutil/relativedelta.pyi +/home/rushilwiz/ion/intranet/test/stubs/dateutil/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/fabric/contrib +/home/rushilwiz/ion/intranet/test/stubs/fabric/api.pyi +/home/rushilwiz/ion/intranet/test/stubs/fabric/context_managers.pyi +/home/rushilwiz/ion/intranet/test/stubs/fabric/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/fabric/utils.pyi +/home/rushilwiz/ion/intranet/test/stubs/fabric/operations.pyi +/home/rushilwiz/ion/intranet/test/stubs/fabric/state.pyi +/home/rushilwiz/ion/intranet/test/stubs/fabric/contrib/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/fabric/contrib/console.pyi +/home/rushilwiz/ion/intranet/test/stubs/corsheaders/defaults.pyi +/home/rushilwiz/ion/intranet/test/stubs/corsheaders/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/corsheaders/middleware.pyi +/home/rushilwiz/ion/intranet/test/stubs/formtools/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/formtools/wizard +/home/rushilwiz/ion/intranet/test/stubs/formtools/wizard/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/formtools/wizard/views.pyi +/home/rushilwiz/ion/intranet/test/stubs/reportlab/platypus.pyi +/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib +/home/rushilwiz/ion/intranet/test/stubs/reportlab/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/units.pyi +/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/enums.pyi +/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/styles.pyi +/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/pagesizes.pyi +/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/utils.pyi +/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/conf.pyi +/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/middleware.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_si.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/rsakey.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/config.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/proxy.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_handle.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/dsskey.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/ssh_exception.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_attr.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/server.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/transport.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/util.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/common.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/agent.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/file.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_client.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/client.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_file.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/pkey.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/hostkeys.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_server.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/message.pyi +/home/rushilwiz/ion/intranet/test/stubs/paramiko/channel.pyi +/home/rushilwiz/ion/intranet/test/stubs/unittest/mock.pyi +/home/rushilwiz/ion/intranet/test/stubs/unittest/util.pyi +/home/rushilwiz/ion/intranet/test/stubs/unittest/runner.pyi +/home/rushilwiz/ion/intranet/test/stubs/unittest/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/unittest/result.pyi +/home/rushilwiz/ion/intranet/test/stubs/unittest/suite.pyi +/home/rushilwiz/ion/intranet/test/stubs/unittest/signals.pyi +/home/rushilwiz/ion/intranet/test/stubs/unittest/loader.pyi +/home/rushilwiz/ion/intranet/test/stubs/unittest/case.pyi +/home/rushilwiz/ion/intranet/test/stubs/unittest/main.pyi +/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar/settings.pyi +/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar/middleware.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/contrib +/home/rushilwiz/ion/intranet/test/stubs/django/shortcuts.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/dispatch.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/template +/home/rushilwiz/ion/intranet/test/stubs/django/utils +/home/rushilwiz/ion/intranet/test/stubs/django/views +/home/rushilwiz/ion/intranet/test/stubs/django/urls +/home/rushilwiz/ion/intranet/test/stubs/django/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/test +/home/rushilwiz/ion/intranet/test/stubs/django/apps +/home/rushilwiz/ion/intranet/test/stubs/django/conf +/home/rushilwiz/ion/intranet/test/stubs/django/core +/home/rushilwiz/ion/intranet/test/stubs/django/forms +/home/rushilwiz/ion/intranet/test/stubs/django/http.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db +/home/rushilwiz/ion/intranet/test/stubs/django/templatetags +/home/rushilwiz/ion/intranet/test/stubs/django/contrib/messages.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth +/home/rushilwiz/ion/intranet/test/stubs/django/contrib/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/contrib/admin +/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/forms.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/hashers.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/models.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/decorators.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/contrib/admin/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/contrib/admin/site.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/template/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/template/loader.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/log.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/functional.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/tree.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/translation +/home/rushilwiz/ion/intranet/test/stubs/django/utils/safestring.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/formats.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/decorators.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/deprecation.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/encoding.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/text.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/http.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/html.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/timezone.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/utils/translation/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators +/home/rushilwiz/ion/intranet/test/stubs/django/views/generic +/home/rushilwiz/ion/intranet/test/stubs/django/views/debug.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/views/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/csrf.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/debug.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/clickjacking.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/http.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/views/generic/base.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/views/generic/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/urls/exceptions.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/urls/resolvers.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/urls/base.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/urls/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/urls/utils.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/test/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/test/utils.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/apps/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/apps/apps.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/conf/settings.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/conf/urls.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/conf/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/serializers +/home/rushilwiz/ion/intranet/test/stubs/django/core/files +/home/rushilwiz/ion/intranet/test/stubs/django/core/exceptions.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/mail.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/management +/home/rushilwiz/ion/intranet/test/stubs/django/core/paginator.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/wsgi.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/signing.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/signals.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/cache +/home/rushilwiz/ion/intranet/test/stubs/django/core/handlers +/home/rushilwiz/ion/intranet/test/stubs/django/core/urlresolvers.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/validators.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/serializers/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/files/images.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/files/base.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/files/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/files/utils.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/management/base.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/management/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends +/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends/base.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends/dummy.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/handlers/wsgi.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/core/handlers/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/forms/formsets.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/forms/widgets.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/forms/forms.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/forms/boundfield.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/forms/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/forms/models.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/forms/fields.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/migrations.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/backends +/home/rushilwiz/ion/intranet/test/stubs/django/db/models +/home/rushilwiz/ion/intranet/test/stubs/django/db/transaction.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/utils.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/connections.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/backends/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/backends/utils.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/lookups.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/expressions.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/aggregates.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/base.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/query_utils.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/manager.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/query.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/deletion.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/related_descriptors.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/reverse_related.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/files.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/related_lookups.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/related.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/templatetags/static.pyi +/home/rushilwiz/ion/intranet/test/stubs/django/templatetags/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/response.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/permissions.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/serializers.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/exceptions.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/renderers.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/reverse.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/generics.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/status.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/decorators.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/views.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/authentication.pyi +/home/rushilwiz/ion/intranet/test/stubs/rest_framework/pagination.pyi +/home/rushilwiz/ion/intranet/test/stubs/raven/contrib +/home/rushilwiz/ion/intranet/test/stubs/raven/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django +/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/raven_compat +/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/raven_compat/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/raven_compat/models.pyi +/home/rushilwiz/ion/intranet/test/stubs/bleach/sanitizer.pyi +/home/rushilwiz/ion/intranet/test/stubs/bleach/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/Crypto/Cipher.pyi +/home/rushilwiz/ion/intranet/test/stubs/Crypto/__init__.pyi +/home/rushilwiz/ion/intranet/test/stubs/setuptools/__init__.pyi +/home/rushilwiz/ion/intranet/apps/error +/home/rushilwiz/ion/intranet/apps/search +/home/rushilwiz/ion/intranet/apps/__init__.py +/home/rushilwiz/ion/intranet/apps/api +/home/rushilwiz/ion/intranet/apps/notifications +/home/rushilwiz/ion/intranet/apps/auth +/home/rushilwiz/ion/intranet/apps/users +/home/rushilwiz/ion/intranet/apps/lostfound +/home/rushilwiz/ion/intranet/apps/events +/home/rushilwiz/ion/intranet/apps/eighth +/home/rushilwiz/ion/intranet/apps/files +/home/rushilwiz/ion/intranet/apps/itemreg +/home/rushilwiz/ion/intranet/apps/oauth +/home/rushilwiz/ion/intranet/apps/polls +/home/rushilwiz/ion/intranet/apps/seniors +/home/rushilwiz/ion/intranet/apps/context_processors.py +/home/rushilwiz/ion/intranet/apps/bus +/home/rushilwiz/ion/intranet/apps/signage +/home/rushilwiz/ion/intranet/apps/dataimport +/home/rushilwiz/ion/intranet/apps/schedule +/home/rushilwiz/ion/intranet/apps/welcome +/home/rushilwiz/ion/intranet/apps/nomination +/home/rushilwiz/ion/intranet/apps/groups +/home/rushilwiz/ion/intranet/apps/feedback +/home/rushilwiz/ion/intranet/apps/parking +/home/rushilwiz/ion/intranet/apps/dashboard +/home/rushilwiz/ion/intranet/apps/announcements +/home/rushilwiz/ion/intranet/apps/emerg +/home/rushilwiz/ion/intranet/apps/features +/home/rushilwiz/ion/intranet/apps/sessionmgmt +/home/rushilwiz/ion/intranet/apps/emailfwd +/home/rushilwiz/ion/intranet/apps/templatetags +/home/rushilwiz/ion/intranet/apps/preferences +/home/rushilwiz/ion/intranet/apps/printing +/home/rushilwiz/ion/intranet/apps/error/__init__.py +/home/rushilwiz/ion/intranet/apps/error/tests.py +/home/rushilwiz/ion/intranet/apps/error/views.py +/home/rushilwiz/ion/intranet/apps/search/__init__.py +/home/rushilwiz/ion/intranet/apps/search/views.py +/home/rushilwiz/ion/intranet/apps/search/utils.py +/home/rushilwiz/ion/intranet/apps/search/urls.py +/home/rushilwiz/ion/intranet/apps/api/__init__.py +/home/rushilwiz/ion/intranet/apps/api/tests.py +/home/rushilwiz/ion/intranet/apps/api/views.py +/home/rushilwiz/ion/intranet/apps/api/authentication.py +/home/rushilwiz/ion/intranet/apps/api/utils.py +/home/rushilwiz/ion/intranet/apps/api/urls.py +/home/rushilwiz/ion/intranet/apps/notifications/migrations +/home/rushilwiz/ion/intranet/apps/notifications/__init__.py +/home/rushilwiz/ion/intranet/apps/notifications/tasks.py +/home/rushilwiz/ion/intranet/apps/notifications/models.py +/home/rushilwiz/ion/intranet/apps/notifications/views.py +/home/rushilwiz/ion/intranet/apps/notifications/urls.py +/home/rushilwiz/ion/intranet/apps/notifications/emails.py +/home/rushilwiz/ion/intranet/apps/notifications/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/notifications/migrations/0002_auto_20150729_1734.py +/home/rushilwiz/ion/intranet/apps/notifications/migrations/0003_gcmnotification.py +/home/rushilwiz/ion/intranet/apps/notifications/migrations/0005_auto_20151221_2008.py +/home/rushilwiz/ion/intranet/apps/notifications/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/notifications/migrations/0007_auto_20151221_2259.py +/home/rushilwiz/ion/intranet/apps/notifications/migrations/0006_auto_20151221_2028.py +/home/rushilwiz/ion/intranet/apps/notifications/migrations/0004_notificationconfig_android_gcm_optout.py +/home/rushilwiz/ion/intranet/apps/auth/__init__.py +/home/rushilwiz/ion/intranet/apps/auth/decorators.py +/home/rushilwiz/ion/intranet/apps/auth/tests.py +/home/rushilwiz/ion/intranet/apps/auth/apps.py +/home/rushilwiz/ion/intranet/apps/auth/backends.py +/home/rushilwiz/ion/intranet/apps/auth/helpers.py +/home/rushilwiz/ion/intranet/apps/auth/management +/home/rushilwiz/ion/intranet/apps/auth/views.py +/home/rushilwiz/ion/intranet/apps/auth/forms.py +/home/rushilwiz/ion/intranet/apps/auth/signals.py +/home/rushilwiz/ion/intranet/apps/auth/rest_permissions.py +/home/rushilwiz/ion/intranet/apps/auth/urls.py +/home/rushilwiz/ion/intranet/apps/auth/management/__init__.py +/home/rushilwiz/ion/intranet/apps/auth/management/commands +/home/rushilwiz/ion/intranet/apps/auth/management/commands/__init__.py +/home/rushilwiz/ion/intranet/apps/auth/management/commands/grant_admin.py +/home/rushilwiz/ion/intranet/apps/users/migrations +/home/rushilwiz/ion/intranet/apps/users/__init__.py +/home/rushilwiz/ion/intranet/apps/users/serializers.py +/home/rushilwiz/ion/intranet/apps/users/tests.py +/home/rushilwiz/ion/intranet/apps/users/models.py +/home/rushilwiz/ion/intranet/apps/users/renderers.py +/home/rushilwiz/ion/intranet/apps/users/admin.py +/home/rushilwiz/ion/intranet/apps/users/management +/home/rushilwiz/ion/intranet/apps/users/views.py +/home/rushilwiz/ion/intranet/apps/users/forms.py +/home/rushilwiz/ion/intranet/apps/users/templatetags +/home/rushilwiz/ion/intranet/apps/users/urls.py +/home/rushilwiz/ion/intranet/apps/users/courses_urls.py +/home/rushilwiz/ion/intranet/apps/users/api.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0016_auto_20170802_1355.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0023_auto_20170806_2123.py +/home/rushilwiz/ion/intranet/apps/users/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0021_remove_user_grade_number.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0013_auto_20161016_1525.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0003_merge.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0019_auto_20170803_1342.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0006_user_seen_welcome.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0002_auto_20150404_1622.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0032_userdarkmodeproperties.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0018_user_title.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0002_auto_20150402_1847.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0007_user_receive_schedule_notifications.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0005_user_first_login.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0020_auto_20170803_1344.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0004_auto_20150717_0904.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0027_auto_20170824_1314.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0029_auto_20170825_1610.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0017_auto_20170802_1357.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0026_auto_20170824_1256.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0028_auto_20170824_1644.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0031_auto_20190715_1259.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0008_user__student_id.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0009_user_user_locked.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0010_auto_20161016_1343.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0025_auto_20170823_1354.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0015_auto_20170731_1057.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0030_merge_20171231_2209.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0015_user_bus_route.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0034_remove_userdarkmodeproperties__dark_mode_unlocked.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0011_auto_20161016_1503.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0014_auto_20161017_2114.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0033_user_last_global_logout_time.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0012_auto_20161016_1510.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0024_auto_20170817_1511.py +/home/rushilwiz/ion/intranet/apps/users/migrations/0022_auto_20170805_1558.py +/home/rushilwiz/ion/intranet/apps/users/management/__init__.py +/home/rushilwiz/ion/intranet/apps/users/management/commands +/home/rushilwiz/ion/intranet/apps/users/management/commands/__init__.py +/home/rushilwiz/ion/intranet/apps/users/management/commands/lock.py +/home/rushilwiz/ion/intranet/apps/users/management/commands/import_groups.py +/home/rushilwiz/ion/intranet/apps/users/templatetags/users.py +/home/rushilwiz/ion/intranet/apps/users/templatetags/__init__.py +/home/rushilwiz/ion/intranet/apps/users/templatetags/phone_numbers.py +/home/rushilwiz/ion/intranet/apps/users/templatetags/grades.py +/home/rushilwiz/ion/intranet/apps/lostfound/migrations +/home/rushilwiz/ion/intranet/apps/lostfound/__init__.py +/home/rushilwiz/ion/intranet/apps/lostfound/models.py +/home/rushilwiz/ion/intranet/apps/lostfound/apps.py +/home/rushilwiz/ion/intranet/apps/lostfound/admin.py +/home/rushilwiz/ion/intranet/apps/lostfound/views.py +/home/rushilwiz/ion/intranet/apps/lostfound/forms.py +/home/rushilwiz/ion/intranet/apps/lostfound/urls.py +/home/rushilwiz/ion/intranet/apps/lostfound/migrations/0002_auto_20160828_2058.py +/home/rushilwiz/ion/intranet/apps/lostfound/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/lostfound/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/events/migrations +/home/rushilwiz/ion/intranet/apps/events/__init__.py +/home/rushilwiz/ion/intranet/apps/events/tests.py +/home/rushilwiz/ion/intranet/apps/events/models.py +/home/rushilwiz/ion/intranet/apps/events/admin.py +/home/rushilwiz/ion/intranet/apps/events/views.py +/home/rushilwiz/ion/intranet/apps/events/forms.py +/home/rushilwiz/ion/intranet/apps/events/notifications.py +/home/rushilwiz/ion/intranet/apps/events/urls.py +/home/rushilwiz/ion/intranet/apps/events/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0011_auto_20150913_1427.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0017_auto_20160323_2305.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0002_auto_20150623_1452.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0024_auto_20170307_2037_squashed_0025_auto_20170307_2040.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0023_event_category.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0005_event_time.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0012_auto_20150913_1433.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0003_link_title.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0019_tjstaruuidmap.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0015_auto_20151130_1427.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0004_remove_event_time.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0009_auto_20150903_1138.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0022_event_public.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0006_auto_20150623_1615.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0021_auto_20161004_2034.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0025_event_open_to.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0014_event_show_attending.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0010_auto_20150911_2148.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0008_event_attending.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0007_auto_20150628_1227.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0016_auto_20160323_2118.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0013_auto_20150913_1433.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0018_event_show_on_dashboard.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0020_auto_20160828_2058.py +/home/rushilwiz/ion/intranet/apps/events/migrations/0026_auto_20170307_2258.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations +/home/rushilwiz/ion/intranet/apps/eighth/__init__.py +/home/rushilwiz/ion/intranet/apps/eighth/serializers.py +/home/rushilwiz/ion/intranet/apps/eighth/tests.py +/home/rushilwiz/ion/intranet/apps/eighth/tasks.py +/home/rushilwiz/ion/intranet/apps/eighth/models.py +/home/rushilwiz/ion/intranet/apps/eighth/admin.py +/home/rushilwiz/ion/intranet/apps/eighth/views +/home/rushilwiz/ion/intranet/apps/eighth/context_processors.py +/home/rushilwiz/ion/intranet/apps/eighth/management +/home/rushilwiz/ion/intranet/apps/eighth/forms +/home/rushilwiz/ion/intranet/apps/eighth/exceptions.py +/home/rushilwiz/ion/intranet/apps/eighth/utils.py +/home/rushilwiz/ion/intranet/apps/eighth/notifications.py +/home/rushilwiz/ion/intranet/apps/eighth/urls.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0046_auto_20161004_2140.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0030_remove_eighthactivity_aid.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0058_auto_20171117_1724.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0005_auto_20150318_1243.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0051_auto_20170203_1310.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0059_auto_20180726_1739.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0029_auto_20150829_2335.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0011_eighthsignup_absence_acknowledged.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0052_auto_20170329_1258.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0006_auto_20150318_1246.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0040_auto_20160515_1851.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0048_auto_20161006_2137.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0028_historicaleighthactivity.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0023_auto_20150530_0026.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0035_eighthactivity_blacklist.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0016_auto_20150526_0930.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0043_auto_20160926_2206.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0003_auto_20150317_0947.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0049_auto_20170106_1007.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0039_auto_20160322_1013.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0038_merge.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0010_eighthscheduledactivity_admin_comments.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0007_auto_20150318_1249.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0055_auto_20171003_2201.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0009_eighthactivity_favorites.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0022_schedactivity_comments_to_title.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0033_eighthactivity_default_capacity.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0054_auto_20170706_1043.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0042_auto_20160829_1242.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0013_auto_20150523_1233.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0020_eighthblock_override_blocks.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0061_auto_20191215_2222.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0034_eighthscheduledactivity_special.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0037_auto_20160307_2342.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0004_auto_20150317_1003.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0025_eighthblock_time.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0050_eighthwaitlist_block.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0041_auto_20160828_2052.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0014_eighthsponsor_show_full_name.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0036_eighthscheduledactivity_administrative.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0057_auto_20171005_2135.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0015_auto_20150523_1300.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0026_auto_20150714_0914.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0029_auto_20150724_1530.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0031_eighthsignup_absence_emailed.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0045_auto_20161004_2135.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0053_auto_20170518_1458.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0024_eighthactivity_aid.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0019_auto_20150528_0015.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0027_eighthblock_comments.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0060_auto_20180726_1815.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0062_auto_20200116_1926.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0047_auto_20161005_0655.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0036_merge.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0002_auto_20150317_0934.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0056_eighthactivitysimilarity_true_count.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0018_auto_20150527_2333.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0044_auto_20161004_2034.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0032_auto_20151118_0106.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0012_eighthactivity_administrative.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0017_auto_20150526_0933.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0008_auto_20150318_1305.py +/home/rushilwiz/ion/intranet/apps/eighth/migrations/0021_auto_20150529_2219.py +/home/rushilwiz/ion/intranet/apps/eighth/views/__init__.py +/home/rushilwiz/ion/intranet/apps/eighth/views/routers.py +/home/rushilwiz/ion/intranet/apps/eighth/views/signup.py +/home/rushilwiz/ion/intranet/apps/eighth/views/profile.py +/home/rushilwiz/ion/intranet/apps/eighth/views/activities.py +/home/rushilwiz/ion/intranet/apps/eighth/views/monitoring.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin +/home/rushilwiz/ion/intranet/apps/eighth/views/attendance.py +/home/rushilwiz/ion/intranet/apps/eighth/views/api.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin/users.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin/__init__.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin/maintenance.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin/groups.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin/sponsors.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin/activities.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin/general.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin/blocks.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin/rooms.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin/attendance.py +/home/rushilwiz/ion/intranet/apps/eighth/views/admin/scheduling.py +/home/rushilwiz/ion/intranet/apps/eighth/management/__init__.py +/home/rushilwiz/ion/intranet/apps/eighth/management/commands +/home/rushilwiz/ion/intranet/apps/eighth/management/commands/__init__.py +/home/rushilwiz/ion/intranet/apps/eighth/management/commands/delete_duplicate_signups.py +/home/rushilwiz/ion/intranet/apps/eighth/management/commands/generate_similarities.py +/home/rushilwiz/ion/intranet/apps/eighth/management/commands/signup_status_email.py +/home/rushilwiz/ion/intranet/apps/eighth/management/commands/find_duplicates.py +/home/rushilwiz/ion/intranet/apps/eighth/management/commands/absence_email.py +/home/rushilwiz/ion/intranet/apps/eighth/management/commands/remove_withdrawn_students.py +/home/rushilwiz/ion/intranet/apps/eighth/management/commands/generate_statistics.py +/home/rushilwiz/ion/intranet/apps/eighth/management/commands/dev_create_blocks.py +/home/rushilwiz/ion/intranet/apps/eighth/management/commands/update_counselors.py +/home/rushilwiz/ion/intranet/apps/eighth/forms/__init__.py +/home/rushilwiz/ion/intranet/apps/eighth/forms/admin +/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/__init__.py +/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/groups.py +/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/sponsors.py +/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/activities.py +/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/general.py +/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/blocks.py +/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/rooms.py +/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/scheduling.py +/home/rushilwiz/ion/intranet/apps/files/migrations +/home/rushilwiz/ion/intranet/apps/files/__init__.py +/home/rushilwiz/ion/intranet/apps/files/tests.py +/home/rushilwiz/ion/intranet/apps/files/models.py +/home/rushilwiz/ion/intranet/apps/files/views.py +/home/rushilwiz/ion/intranet/apps/files/forms.py +/home/rushilwiz/ion/intranet/apps/files/urls.py +/home/rushilwiz/ion/intranet/apps/files/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/files/migrations/0004_host_visible_to_all.py +/home/rushilwiz/ion/intranet/apps/files/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/files/migrations/0002_auto_20150808_2134.py +/home/rushilwiz/ion/intranet/apps/files/migrations/0005_auto_20151109_2139.py +/home/rushilwiz/ion/intranet/apps/files/migrations/0003_auto_20150809_0057.py +/home/rushilwiz/ion/intranet/apps/itemreg/migrations +/home/rushilwiz/ion/intranet/apps/itemreg/__init__.py +/home/rushilwiz/ion/intranet/apps/itemreg/models.py +/home/rushilwiz/ion/intranet/apps/itemreg/apps.py +/home/rushilwiz/ion/intranet/apps/itemreg/admin.py +/home/rushilwiz/ion/intranet/apps/itemreg/views.py +/home/rushilwiz/ion/intranet/apps/itemreg/forms.py +/home/rushilwiz/ion/intranet/apps/itemreg/templatetags +/home/rushilwiz/ion/intranet/apps/itemreg/urls.py +/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0005_auto_20160410_2146.py +/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0007_auto_20160413_1929.py +/home/rushilwiz/ion/intranet/apps/itemreg/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0004_auto_20160410_2144.py +/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0003_auto_20160409_2240.py +/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0008_auto_20160828_2058.py +/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0009_auto_20180524_2221.py +/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0006_auto_20160410_2215.py +/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0002_auto_20160409_2157.py +/home/rushilwiz/ion/intranet/apps/itemreg/templatetags/__init__.py +/home/rushilwiz/ion/intranet/apps/itemreg/templatetags/texthighlight.py +/home/rushilwiz/ion/intranet/apps/oauth/migrations +/home/rushilwiz/ion/intranet/apps/oauth/__init__.py +/home/rushilwiz/ion/intranet/apps/oauth/tests.py +/home/rushilwiz/ion/intranet/apps/oauth/models.py +/home/rushilwiz/ion/intranet/apps/oauth/apps.py +/home/rushilwiz/ion/intranet/apps/oauth/admin.py +/home/rushilwiz/ion/intranet/apps/oauth/views.py +/home/rushilwiz/ion/intranet/apps/oauth/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/polls/migrations +/home/rushilwiz/ion/intranet/apps/polls/__init__.py +/home/rushilwiz/ion/intranet/apps/polls/tests.py +/home/rushilwiz/ion/intranet/apps/polls/models.py +/home/rushilwiz/ion/intranet/apps/polls/admin.py +/home/rushilwiz/ion/intranet/apps/polls/views.py +/home/rushilwiz/ion/intranet/apps/polls/forms.py +/home/rushilwiz/ion/intranet/apps/polls/urls.py +/home/rushilwiz/ion/intranet/apps/polls/migrations/0009_auto_20170425_1730.py +/home/rushilwiz/ion/intranet/apps/polls/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/polls/migrations/0002_auto_20151117_1855.py +/home/rushilwiz/ion/intranet/apps/polls/migrations/0006_auto_20160112_0101.py +/home/rushilwiz/ion/intranet/apps/polls/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/polls/migrations/0005_question_max_choices.py +/home/rushilwiz/ion/intranet/apps/polls/migrations/0004_answer_answer.py +/home/rushilwiz/ion/intranet/apps/polls/migrations/0007_auto_20160828_2058.py +/home/rushilwiz/ion/intranet/apps/polls/migrations/0010_poll_is_secret.py +/home/rushilwiz/ion/intranet/apps/polls/migrations/0003_auto_20151117_2139.py +/home/rushilwiz/ion/intranet/apps/polls/migrations/0008_auto_20161212_2355.py +/home/rushilwiz/ion/intranet/apps/seniors/migrations +/home/rushilwiz/ion/intranet/apps/seniors/__init__.py +/home/rushilwiz/ion/intranet/apps/seniors/models.py +/home/rushilwiz/ion/intranet/apps/seniors/admin.py +/home/rushilwiz/ion/intranet/apps/seniors/management +/home/rushilwiz/ion/intranet/apps/seniors/views.py +/home/rushilwiz/ion/intranet/apps/seniors/forms.py +/home/rushilwiz/ion/intranet/apps/seniors/urls.py +/home/rushilwiz/ion/intranet/apps/seniors/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/seniors/migrations/0007_auto_20151215_2341.py +/home/rushilwiz/ion/intranet/apps/seniors/migrations/0002_auto_20151130_1459.py +/home/rushilwiz/ion/intranet/apps/seniors/migrations/0006_auto_20151130_1640.py +/home/rushilwiz/ion/intranet/apps/seniors/migrations/0005_auto_20151130_1637.py +/home/rushilwiz/ion/intranet/apps/seniors/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/seniors/migrations/0004_auto_20151130_1634.py +/home/rushilwiz/ion/intranet/apps/seniors/migrations/0003_auto_20151130_1504.py +/home/rushilwiz/ion/intranet/apps/seniors/management/__init__.py +/home/rushilwiz/ion/intranet/apps/seniors/management/commands +/home/rushilwiz/ion/intranet/apps/seniors/management/commands/__init__.py +/home/rushilwiz/ion/intranet/apps/seniors/management/commands/import_colleges.py +/home/rushilwiz/ion/intranet/apps/bus/migrations +/home/rushilwiz/ion/intranet/apps/bus/__init__.py +/home/rushilwiz/ion/intranet/apps/bus/serializers.py +/home/rushilwiz/ion/intranet/apps/bus/tests.py +/home/rushilwiz/ion/intranet/apps/bus/tasks.py +/home/rushilwiz/ion/intranet/apps/bus/models.py +/home/rushilwiz/ion/intranet/apps/bus/admin.py +/home/rushilwiz/ion/intranet/apps/bus/management +/home/rushilwiz/ion/intranet/apps/bus/views.py +/home/rushilwiz/ion/intranet/apps/bus/consumers.py +/home/rushilwiz/ion/intranet/apps/bus/urls.py +/home/rushilwiz/ion/intranet/apps/bus/api.py +/home/rushilwiz/ion/intranet/apps/bus/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/bus/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/bus/migrations/0002_auto_20170606_1038.py +/home/rushilwiz/ion/intranet/apps/bus/migrations/0004_auto_20180117_1232.py +/home/rushilwiz/ion/intranet/apps/bus/migrations/0003_route_space.py +/home/rushilwiz/ion/intranet/apps/bus/management/commands +/home/rushilwiz/ion/intranet/apps/bus/management/commands/__init__.py +/home/rushilwiz/ion/intranet/apps/bus/management/commands/import_routes.py +/home/rushilwiz/ion/intranet/apps/bus/management/commands/reset_routes.py +/home/rushilwiz/ion/intranet/apps/signage/migrations +/home/rushilwiz/ion/intranet/apps/signage/__init__.py +/home/rushilwiz/ion/intranet/apps/signage/models.py +/home/rushilwiz/ion/intranet/apps/signage/admin.py +/home/rushilwiz/ion/intranet/apps/signage/views.py +/home/rushilwiz/ion/intranet/apps/signage/pages.py +/home/rushilwiz/ion/intranet/apps/signage/consumers.py +/home/rushilwiz/ion/intranet/apps/signage/templatetags +/home/rushilwiz/ion/intranet/apps/signage/urls.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0017_sign_latest_heartbeat_time.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0007_sign_landscape.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0004_auto_20160212_1121.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0002_auto_20151230_2151.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0013_auto_20180329_1438.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0008_sign_map_location.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0006_sign_zoom.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0009_auto_20180327_1210.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0003_sign_use_frameset.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0005_auto_20160303_1409.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0015_auto_20180422_1714.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0010_auto_20180327_1233.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0016_auto_20191210_1520.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0011_page_sandbox.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0014_page_strip_links.py +/home/rushilwiz/ion/intranet/apps/signage/migrations/0012_auto_20180327_1459.py +/home/rushilwiz/ion/intranet/apps/signage/templatetags/__init__.py +/home/rushilwiz/ion/intranet/apps/signage/templatetags/signage.py +/home/rushilwiz/ion/intranet/apps/dataimport/migrations +/home/rushilwiz/ion/intranet/apps/dataimport/__init__.py +/home/rushilwiz/ion/intranet/apps/dataimport/tests.py +/home/rushilwiz/ion/intranet/apps/dataimport/apps.py +/home/rushilwiz/ion/intranet/apps/dataimport/management +/home/rushilwiz/ion/intranet/apps/dataimport/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/dataimport/management/__init__.py +/home/rushilwiz/ion/intranet/apps/dataimport/management/commands +/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/__init__.py +/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/import_eighth.py +/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/year_cleanup.py +/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/import_photos.py +/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/import_users.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations +/home/rushilwiz/ion/intranet/apps/schedule/__init__.py +/home/rushilwiz/ion/intranet/apps/schedule/serializers.py +/home/rushilwiz/ion/intranet/apps/schedule/tests.py +/home/rushilwiz/ion/intranet/apps/schedule/models.py +/home/rushilwiz/ion/intranet/apps/schedule/admin.py +/home/rushilwiz/ion/intranet/apps/schedule/management +/home/rushilwiz/ion/intranet/apps/schedule/views.py +/home/rushilwiz/ion/intranet/apps/schedule/forms.py +/home/rushilwiz/ion/intranet/apps/schedule/notifications.py +/home/rushilwiz/ion/intranet/apps/schedule/urls.py +/home/rushilwiz/ion/intranet/apps/schedule/api.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/0006_auto_20150606_2350.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/0005_auto_20150606_2122.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/0007_auto_20150606_2351.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/0002_auto_20150606_2057.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/0008_block_order.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/0011_day_comment.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/0003_auto_20150606_2100.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/0009_auto_20150717_0904.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/0004_auto_20150606_2116.py +/home/rushilwiz/ion/intranet/apps/schedule/migrations/0010_auto_20150806_1547.py +/home/rushilwiz/ion/intranet/apps/schedule/management/__init__.py +/home/rushilwiz/ion/intranet/apps/schedule/management/commands +/home/rushilwiz/ion/intranet/apps/schedule/management/commands/__init__.py +/home/rushilwiz/ion/intranet/apps/schedule/management/commands/schedule_notify.py +/home/rushilwiz/ion/intranet/apps/welcome/migrations +/home/rushilwiz/ion/intranet/apps/welcome/__init__.py +/home/rushilwiz/ion/intranet/apps/welcome/tests.py +/home/rushilwiz/ion/intranet/apps/welcome/views.py +/home/rushilwiz/ion/intranet/apps/welcome/urls.py +/home/rushilwiz/ion/intranet/apps/welcome/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/nomination/migrations +/home/rushilwiz/ion/intranet/apps/nomination/__init__.py +/home/rushilwiz/ion/intranet/apps/nomination/tests.py +/home/rushilwiz/ion/intranet/apps/nomination/models.py +/home/rushilwiz/ion/intranet/apps/nomination/apps.py +/home/rushilwiz/ion/intranet/apps/nomination/views.py +/home/rushilwiz/ion/intranet/apps/nomination/urls.py +/home/rushilwiz/ion/intranet/apps/nomination/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/nomination/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/nomination/migrations/0002_auto_20160929_2156.py +/home/rushilwiz/ion/intranet/apps/groups/migrations +/home/rushilwiz/ion/intranet/apps/groups/__init__.py +/home/rushilwiz/ion/intranet/apps/groups/tests.py +/home/rushilwiz/ion/intranet/apps/groups/models.py +/home/rushilwiz/ion/intranet/apps/groups/views.py +/home/rushilwiz/ion/intranet/apps/groups/forms.py +/home/rushilwiz/ion/intranet/apps/groups/urls.py +/home/rushilwiz/ion/intranet/apps/groups/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/groups/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/feedback/migrations +/home/rushilwiz/ion/intranet/apps/feedback/__init__.py +/home/rushilwiz/ion/intranet/apps/feedback/tests.py +/home/rushilwiz/ion/intranet/apps/feedback/models.py +/home/rushilwiz/ion/intranet/apps/feedback/admin.py +/home/rushilwiz/ion/intranet/apps/feedback/views.py +/home/rushilwiz/ion/intranet/apps/feedback/forms.py +/home/rushilwiz/ion/intranet/apps/feedback/urls.py +/home/rushilwiz/ion/intranet/apps/feedback/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/feedback/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/feedback/migrations/0002_auto_20151207_1933.py +/home/rushilwiz/ion/intranet/apps/feedback/migrations/0003_auto_20160828_2058.py +/home/rushilwiz/ion/intranet/apps/parking/migrations +/home/rushilwiz/ion/intranet/apps/parking/__init__.py +/home/rushilwiz/ion/intranet/apps/parking/tests.py +/home/rushilwiz/ion/intranet/apps/parking/models.py +/home/rushilwiz/ion/intranet/apps/parking/apps.py +/home/rushilwiz/ion/intranet/apps/parking/admin.py +/home/rushilwiz/ion/intranet/apps/parking/views.py +/home/rushilwiz/ion/intranet/apps/parking/forms.py +/home/rushilwiz/ion/intranet/apps/parking/urls.py +/home/rushilwiz/ion/intranet/apps/parking/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/parking/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/parking/migrations/0002_carapplication_user.py +/home/rushilwiz/ion/intranet/apps/parking/migrations/0003_auto_20160606_1448.py +/home/rushilwiz/ion/intranet/apps/dashboard/__init__.py +/home/rushilwiz/ion/intranet/apps/dashboard/views.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations +/home/rushilwiz/ion/intranet/apps/announcements/__init__.py +/home/rushilwiz/ion/intranet/apps/announcements/serializers.py +/home/rushilwiz/ion/intranet/apps/announcements/tests.py +/home/rushilwiz/ion/intranet/apps/announcements/models.py +/home/rushilwiz/ion/intranet/apps/announcements/admin.py +/home/rushilwiz/ion/intranet/apps/announcements/views.py +/home/rushilwiz/ion/intranet/apps/announcements/forms.py +/home/rushilwiz/ion/intranet/apps/announcements/notifications.py +/home/rushilwiz/ion/intranet/apps/announcements/urls.py +/home/rushilwiz/ion/intranet/apps/announcements/api.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0014_auto_20150723_0914.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0022_auto_20151118_1037.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0024_auto_20161004_2034.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0017_auto_20150723_1058.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0019_auto_20150806_0849.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0003_announcement_user.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0015_auto_20150723_0922.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0012_auto_20150713_1348.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0005_auto_20150515_1353.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0023_auto_20160828_2058.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0016_auto_20150723_1052.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0020_auto_20150806_1547.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0010_auto_20150629_1351.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0021_announcement_notify_email_all.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0008_auto_20150603_1401.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0018_announcement_notify_post.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0011_auto_20150713_1314.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0013_announcementrequest_admin_email_sent.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0006_merge.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0002_announcement_groups.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0009_announcement_expiration_date.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0005_auto_20150515_1355.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0004_auto_20150512_2010.py +/home/rushilwiz/ion/intranet/apps/announcements/migrations/0007_announcementrequest.py +/home/rushilwiz/ion/intranet/apps/emerg/migrations +/home/rushilwiz/ion/intranet/apps/emerg/__init__.py +/home/rushilwiz/ion/intranet/apps/emerg/tasks.py +/home/rushilwiz/ion/intranet/apps/emerg/views.py +/home/rushilwiz/ion/intranet/apps/emerg/api.py +/home/rushilwiz/ion/intranet/apps/emerg/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/features/migrations +/home/rushilwiz/ion/intranet/apps/features/__init__.py +/home/rushilwiz/ion/intranet/apps/features/tests.py +/home/rushilwiz/ion/intranet/apps/features/models.py +/home/rushilwiz/ion/intranet/apps/features/admin.py +/home/rushilwiz/ion/intranet/apps/features/helpers.py +/home/rushilwiz/ion/intranet/apps/features/context_processors.py +/home/rushilwiz/ion/intranet/apps/features/views.py +/home/rushilwiz/ion/intranet/apps/features/urls.py +/home/rushilwiz/ion/intranet/apps/features/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/features/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/features/migrations/0002_auto_20191117_1403.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations +/home/rushilwiz/ion/intranet/apps/sessionmgmt/__init__.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/tests.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/models.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/admin.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/helpers.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/views.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/urls.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0003_auto_20191012_1947.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0002_auto_20191012_1942.py +/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0004_auto_20191013_2230.py +/home/rushilwiz/ion/intranet/apps/emailfwd/migrations +/home/rushilwiz/ion/intranet/apps/emailfwd/__init__.py +/home/rushilwiz/ion/intranet/apps/emailfwd/tests.py +/home/rushilwiz/ion/intranet/apps/emailfwd/models.py +/home/rushilwiz/ion/intranet/apps/emailfwd/apps.py +/home/rushilwiz/ion/intranet/apps/emailfwd/views.py +/home/rushilwiz/ion/intranet/apps/emailfwd/forms.py +/home/rushilwiz/ion/intranet/apps/emailfwd/urls.py +/home/rushilwiz/ion/intranet/apps/emailfwd/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/emailfwd/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/templatetags/__init__.py +/home/rushilwiz/ion/intranet/apps/templatetags/math.py +/home/rushilwiz/ion/intranet/apps/templatetags/tests.py +/home/rushilwiz/ion/intranet/apps/templatetags/dates.py +/home/rushilwiz/ion/intranet/apps/templatetags/form_field.py +/home/rushilwiz/ion/intranet/apps/templatetags/dictionaries.py +/home/rushilwiz/ion/intranet/apps/templatetags/forms.py +/home/rushilwiz/ion/intranet/apps/templatetags/newtab_links.py +/home/rushilwiz/ion/intranet/apps/templatetags/strings.py +/home/rushilwiz/ion/intranet/apps/preferences/migrations +/home/rushilwiz/ion/intranet/apps/preferences/__init__.py +/home/rushilwiz/ion/intranet/apps/preferences/tests.py +/home/rushilwiz/ion/intranet/apps/preferences/views.py +/home/rushilwiz/ion/intranet/apps/preferences/fields.py +/home/rushilwiz/ion/intranet/apps/preferences/forms.py +/home/rushilwiz/ion/intranet/apps/preferences/urls.py +/home/rushilwiz/ion/intranet/apps/preferences/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/printing/migrations +/home/rushilwiz/ion/intranet/apps/printing/__init__.py +/home/rushilwiz/ion/intranet/apps/printing/tests.py +/home/rushilwiz/ion/intranet/apps/printing/models.py +/home/rushilwiz/ion/intranet/apps/printing/admin.py +/home/rushilwiz/ion/intranet/apps/printing/views.py +/home/rushilwiz/ion/intranet/apps/printing/forms.py +/home/rushilwiz/ion/intranet/apps/printing/magic_files +/home/rushilwiz/ion/intranet/apps/printing/urls.py +/home/rushilwiz/ion/intranet/apps/printing/migrations/__init__.py +/home/rushilwiz/ion/intranet/apps/printing/migrations/0006_printjob_page_range.py +/home/rushilwiz/ion/intranet/apps/printing/migrations/0007_printjob_duplex.py +/home/rushilwiz/ion/intranet/apps/printing/migrations/0004_auto_20151218_1346.py +/home/rushilwiz/ion/intranet/apps/printing/migrations/0001_initial.py +/home/rushilwiz/ion/intranet/apps/printing/migrations/0008_auto_20160828_2058.py +/home/rushilwiz/ion/intranet/apps/printing/migrations/0009_printjob_fit.py +/home/rushilwiz/ion/intranet/apps/printing/migrations/0003_printjob_num_pages.py +/home/rushilwiz/ion/intranet/apps/printing/migrations/0005_auto_20160330_1554.py +/home/rushilwiz/ion/intranet/apps/printing/migrations/0002_printjob_printed.py +/home/rushilwiz/ion/intranet/apps/printing/magic_files/msooxml +/home/rushilwiz/ion/intranet/apps/printing/magic_files/COPYING +/home/rushilwiz/ion/intranet/static/manifest.json +/home/rushilwiz/ion/intranet/static/themes +/home/rushilwiz/ion/intranet/static/img +/home/rushilwiz/ion/intranet/static/js +/home/rushilwiz/ion/intranet/static/serviceworker.js +/home/rushilwiz/ion/intranet/static/signage +/home/rushilwiz/ion/intranet/static/svg +/home/rushilwiz/ion/intranet/static/css +/home/rushilwiz/ion/intranet/static/vendor +/home/rushilwiz/ion/intranet/static/themes/snow +/home/rushilwiz/ion/intranet/static/themes/halloween +/home/rushilwiz/ion/intranet/static/themes/piday +/home/rushilwiz/ion/intranet/static/themes/snow/snow.js +/home/rushilwiz/ion/intranet/static/themes/snow/snow.css +/home/rushilwiz/ion/intranet/static/themes/halloween/halloween.css +/home/rushilwiz/ion/intranet/static/themes/halloween/halloween.js +/home/rushilwiz/ion/intranet/static/themes/piday/piday.css +/home/rushilwiz/ion/intranet/static/themes/piday/piday.js +/home/rushilwiz/ion/intranet/static/img/promo +/home/rushilwiz/ion/intranet/static/img/patterns +/home/rushilwiz/ion/intranet/static/img/accounts +/home/rushilwiz/ion/intranet/static/img/logos +/home/rushilwiz/ion/intranet/static/img/promo/old +/home/rushilwiz/ion/intranet/static/img/promo/originals +/home/rushilwiz/ion/intranet/static/img/promo/old/original +/home/rushilwiz/ion/intranet/static/img/patterns/dark +/home/rushilwiz/ion/intranet/static/img/logos/touch +/home/rushilwiz/ion/intranet/static/js/responsive.core.js +/home/rushilwiz/ion/intranet/static/js/mailforwarding.js +/home/rushilwiz/ion/intranet/static/js/welcome.js +/home/rushilwiz/ion/intranet/static/js/announcement.form.js +/home/rushilwiz/ion/intranet/static/js/eighth +/home/rushilwiz/ion/intranet/static/js/common.header.js +/home/rushilwiz/ion/intranet/static/js/hoco_scores.js +/home/rushilwiz/ion/intranet/static/js/schedule.js +/home/rushilwiz/ion/intranet/static/js/common.js +/home/rushilwiz/ion/intranet/static/js/bus.js +/home/rushilwiz/ion/intranet/static/js/features.js +/home/rushilwiz/ion/intranet/static/js/files.js +/home/rushilwiz/ion/intranet/static/js/pages +/home/rushilwiz/ion/intranet/static/js/polls.js +/home/rushilwiz/ion/intranet/static/js/busdriver.js +/home/rushilwiz/ion/intranet/static/js/login.js +/home/rushilwiz/ion/intranet/static/js/hoco_ribbon.js +/home/rushilwiz/ion/intranet/static/js/signage.js +/home/rushilwiz/ion/intranet/static/js/dashboard +/home/rushilwiz/ion/intranet/static/js/vendor +/home/rushilwiz/ion/intranet/static/js/about.js +/home/rushilwiz/ion/intranet/static/js/common.nav.js +/home/rushilwiz/ion/intranet/static/js/eighth/waitlist.toggle.js +/home/rushilwiz/ion/intranet/static/js/eighth/user_link.js +/home/rushilwiz/ion/intranet/static/js/eighth/groups.js +/home/rushilwiz/ion/intranet/static/js/eighth/ui_init.js +/home/rushilwiz/ion/intranet/static/js/eighth/responsive.js +/home/rushilwiz/ion/intranet/static/js/eighth/attendance.js +/home/rushilwiz/ion/intranet/static/js/eighth/signup.js +/home/rushilwiz/ion/intranet/static/js/eighth/schedule.js +/home/rushilwiz/ion/intranet/static/js/eighth/signupUI.js +/home/rushilwiz/ion/intranet/static/js/eighth/statistics.js +/home/rushilwiz/ion/intranet/static/js/eighth/admin.js +/home/rushilwiz/ion/intranet/static/js/eighth/distribute_group.js +/home/rushilwiz/ion/intranet/static/js/eighth/signup.search.js +/home/rushilwiz/ion/intranet/static/js/pages/bus.js +/home/rushilwiz/ion/intranet/static/js/dashboard/events.js +/home/rushilwiz/ion/intranet/static/js/dashboard/common.js +/home/rushilwiz/ion/intranet/static/js/dashboard/seniors.js +/home/rushilwiz/ion/intranet/static/js/dashboard/eighth-widget.js +/home/rushilwiz/ion/intranet/static/js/dashboard/announcements.js +/home/rushilwiz/ion/intranet/static/js/vendor/PIE +/home/rushilwiz/ion/intranet/static/js/vendor/reconnecting-websocket.min.js +/home/rushilwiz/ion/intranet/static/js/vendor/spin.min.js +/home/rushilwiz/ion/intranet/static/js/vendor/backbone-min.map +/home/rushilwiz/ion/intranet/static/js/vendor/jquery.are-you-sure.js +/home/rushilwiz/ion/intranet/static/js/vendor/jquery-1.10.2.min.map +/home/rushilwiz/ion/intranet/static/js/vendor/jquery.stickytableheaders.min.js +/home/rushilwiz/ion/intranet/static/js/vendor/Chart.min.js +/home/rushilwiz/ion/intranet/static/js/vendor/underscore-min.map +/home/rushilwiz/ion/intranet/static/js/vendor/jquery.overscroll.min.js +/home/rushilwiz/ion/intranet/static/js/vendor/underscore-min.js +/home/rushilwiz/ion/intranet/static/js/vendor/jquery.scrollto.min.js +/home/rushilwiz/ion/intranet/static/js/vendor/jquery.cookie.js +/home/rushilwiz/ion/intranet/static/js/vendor/backbone-min.js +/home/rushilwiz/ion/intranet/static/js/vendor/moment.js +/home/rushilwiz/ion/intranet/static/js/vendor/sha256.js +/home/rushilwiz/ion/intranet/static/js/vendor/svg.min.js +/home/rushilwiz/ion/intranet/static/js/vendor/jquery-1.10.2.min.js +/home/rushilwiz/ion/intranet/static/js/vendor/chrono.min.js +/home/rushilwiz/ion/intranet/static/js/vendor/jquery.formset.js +/home/rushilwiz/ion/intranet/static/js/vendor/json2.js +/home/rushilwiz/ion/intranet/static/js/vendor/jquery.timeago.js +/home/rushilwiz/ion/intranet/static/js/vendor/modernizr.js +/home/rushilwiz/ion/intranet/static/js/vendor/PIE/PIE.js +/home/rushilwiz/ion/intranet/static/js/vendor/PIE/PIE.htc +/home/rushilwiz/ion/intranet/static/signage/serviceworker.js +/home/rushilwiz/ion/intranet/static/css/api.scss +/home/rushilwiz/ion/intranet/static/css/search.scss +/home/rushilwiz/ion/intranet/static/css/events.scss +/home/rushilwiz/ion/intranet/static/css/mobile.scss +/home/rushilwiz/ion/intranet/static/css/schedule.scss +/home/rushilwiz/ion/intranet/static/css/eighth.maintenance.scss +/home/rushilwiz/ion/intranet/static/css/hoco_scores.scss +/home/rushilwiz/ion/intranet/static/css/files.scss +/home/rushilwiz/ion/intranet/static/css/eighth.common.scss +/home/rushilwiz/ion/intranet/static/css/dashboard.widgets.scss +/home/rushilwiz/ion/intranet/static/css/bus.scss +/home/rushilwiz/ion/intranet/static/css/eighth.signup.scss +/home/rushilwiz/ion/intranet/static/css/_reset.scss +/home/rushilwiz/ion/intranet/static/css/oauth.scss +/home/rushilwiz/ion/intranet/static/css/theme.blue.scss +/home/rushilwiz/ion/intranet/static/css/responsive.scss +/home/rushilwiz/ion/intranet/static/css/_colors.scss +/home/rushilwiz/ion/intranet/static/css/groups.scss +/home/rushilwiz/ion/intranet/static/css/emerg.scss +/home/rushilwiz/ion/intranet/static/css/announcements.form.scss +/home/rushilwiz/ion/intranet/static/css/profile.scss +/home/rushilwiz/ion/intranet/static/css/eighth.admin.scss +/home/rushilwiz/ion/intranet/static/css/about.scss +/home/rushilwiz/ion/intranet/static/css/lostfound.scss +/home/rushilwiz/ion/intranet/static/css/welcome.scss +/home/rushilwiz/ion/intranet/static/css/sessionmgmt.scss +/home/rushilwiz/ion/intranet/static/css/schedule.widget.scss +/home/rushilwiz/ion/intranet/static/css/dark +/home/rushilwiz/ion/intranet/static/css/polls.form.scss +/home/rushilwiz/ion/intranet/static/css/dashboard.scss +/home/rushilwiz/ion/intranet/static/css/page_base.scss +/home/rushilwiz/ion/intranet/static/css/hoco_ribbon.scss +/home/rushilwiz/ion/intranet/static/css/login.scss +/home/rushilwiz/ion/intranet/static/css/themes.scss +/home/rushilwiz/ion/intranet/static/css/responsive.core.scss +/home/rushilwiz/ion/intranet/static/css/eighth.schedule.scss +/home/rushilwiz/ion/intranet/static/css/signage.base.scss +/home/rushilwiz/ion/intranet/static/css/polls.scss +/home/rushilwiz/ion/intranet/static/css/eighth.profile.scss +/home/rushilwiz/ion/intranet/static/css/signage.page.scss +/home/rushilwiz/ion/intranet/static/css/base.scss +/home/rushilwiz/ion/intranet/static/css/courses.scss +/home/rushilwiz/ion/intranet/static/css/preferences.scss +/home/rushilwiz/ion/intranet/static/css/board.scss +/home/rushilwiz/ion/intranet/static/css/eighth.attendance.scss +/home/rushilwiz/ion/intranet/static/css/dark/events.scss +/home/rushilwiz/ion/intranet/static/css/dark/schedule.scss +/home/rushilwiz/ion/intranet/static/css/dark/nav.scss +/home/rushilwiz/ion/intranet/static/css/dark/cke.scss +/home/rushilwiz/ion/intranet/static/css/dark/files.scss +/home/rushilwiz/ion/intranet/static/css/dark/dashboard.widgets.scss +/home/rushilwiz/ion/intranet/static/css/dark/bus.scss +/home/rushilwiz/ion/intranet/static/css/dark/eighth.signup.scss +/home/rushilwiz/ion/intranet/static/css/dark/oauth.scss +/home/rushilwiz/ion/intranet/static/css/dark/about.scss +/home/rushilwiz/ion/intranet/static/css/dark/lostfound.scss +/home/rushilwiz/ion/intranet/static/css/dark/welcome.scss +/home/rushilwiz/ion/intranet/static/css/dark/sessionmgmt.scss +/home/rushilwiz/ion/intranet/static/css/dark/schedule.widget.scss +/home/rushilwiz/ion/intranet/static/css/dark/dashboard.scss +/home/rushilwiz/ion/intranet/static/css/dark/login.scss +/home/rushilwiz/ion/intranet/static/css/dark/eighth.schedule.scss +/home/rushilwiz/ion/intranet/static/css/dark/polls.scss +/home/rushilwiz/ion/intranet/static/css/dark/select.scss +/home/rushilwiz/ion/intranet/static/css/dark/base.scss +/home/rushilwiz/ion/intranet/static/css/dark/preferences.scss +/home/rushilwiz/ion/intranet/static/css/dark/eighth.attendance.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2 +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4 +/home/rushilwiz/ion/intranet/static/vendor/ckeditor +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5 +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21 +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0 +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom +/home/rushilwiz/ion/intranet/static/vendor/messenger +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/sprites +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_core.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_shims.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_stacked.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_animated.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_bordered-pulled.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_rotated-flipped.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/solid.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/v4-shims.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_fixed-width.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/fontawesome.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_screen-reader.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_list.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/brands.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_icons.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_variables.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_mixins.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_larger.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/regular.less +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/shims.json +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/sponsors.yml +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/icons.json +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/icons.yml +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/categories.yml +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/shims.yml +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/v4-shims.min.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/brands.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/brands.min.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/fontawesome.min.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/regular.min.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/solid.min.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/v4-shims.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/conflict-detection.min.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/fontawesome.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/solid.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/all.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/regular.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/all.min.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/conflict-detection.js +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_core.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_animated.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/v4-shims.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/brands.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_variables.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_icons.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_screen-reader.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_bordered-pulled.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/fontawesome.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/solid.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_shims.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_larger.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_rotated-flipped.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_list.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_mixins.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/regular.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_fixed-width.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_stacked.scss +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.ttf +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.woff2 +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.ttf +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.woff2 +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.woff +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.woff2 +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.eot +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.ttf +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.woff +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.eot +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.woff +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.eot +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs/solid +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs/brands +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs/regular +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/solid.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/v4-shims.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/brands.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/all.min.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/svg-with-js.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/all.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/regular.min.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/solid.min.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/svg-with-js.min.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/v4-shims.min.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/regular.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/brands.min.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/fontawesome.css +/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/fontawesome.min.css +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/package.json +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/selectize.jquery.json +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/LICENSE +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/yarn.lock +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/bower.json +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/Makefile +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/README.md +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/Gruntfile.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/CHANGELOG.md +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/karma.conf.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/events.md +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/plugins.md +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/api.md +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/usage.md +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/contrib +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/utils.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/selectize.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/selectize.jquery.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/constants.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/defaults.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/contrib/microevent.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/contrib/highlight.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.bootstrap2.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.legacy.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.bootstrap3.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.default.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/remove_button +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/optgroup_columns +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/restore_on_backspace +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/dropdown_header +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/drag_drop +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/remove_button/plugin.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/remove_button/plugin.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/optgroup_columns/plugin.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/optgroup_columns/plugin.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/restore_on_backspace/plugin.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/dropdown_header/plugin.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/dropdown_header/plugin.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/drag_drop/plugin.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/drag_drop/plugin.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/api.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/events.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/events_dom.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/xss.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/setup.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/support +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/interaction.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/support/base.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/support/syn.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.bootstrap2.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.legacy.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.bootstrap3.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.default.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/remove_button.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/drag_drop.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/dropdown_header.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/optgroup_columns.less +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/selectize.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/standalone +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/selectize.min.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/standalone/selectize.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/standalone/selectize.min.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.default.css +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.bootstrap2.css +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.bootstrap3.css +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.css +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.legacy.css +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/images +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/contacts.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/rtl.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/events.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/movies.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/basic.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/required.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/create-filter.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/dynamic.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/optgroups.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/github.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/cities.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/lock.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/performance.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/confirm.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/css +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/plugins.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/api.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/customization.html +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/jqueryui.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/index.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/es5.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/jquery.min.js +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/css/normalize.css +/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/css/stylesheet.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/LICENSE.md +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/contents.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/adapters +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/CHANGES.md +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/styles.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/build-config.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/config.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/README.md +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/lang +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/ckeditor.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/adapters/jquery.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/lang/en.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/clipboard +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/dialog +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/images +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/dialogs +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/images/hidpi +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/dialogs/link.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/dialogs/anchor.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/clipboard/dialogs +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/clipboard/dialogs/paste.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/dialog/dialogDefinition.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/images +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/plugin.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/fr.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/en.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/tr.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/de.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/es.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/vi.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/nn.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/it.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ru.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/cs.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/pl.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/fi.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/zh.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/hu.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/sk.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ko.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/he.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ja.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/et.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/nl.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ar.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/pt.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/pt-br.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/nb.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/el.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image/images +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image/dialogs +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image/dialogs/image.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/images +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_ie8.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_iequirks.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_opera.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_ie.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_ie7.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_ie.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_ie7.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_ie8.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/readme.md +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_gecko.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_iequirks.css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/images/hidpi +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/dialog +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_richcombo.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_elementspath.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_toolbar.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_reset.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_panel.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_presets.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_menu.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_colorpanel.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_mainui.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/editor.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie8 +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/opera +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie7 +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/gecko +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/dialog_ie8.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/editor_ie8.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/opera/dialog_opera.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie7/dialog_ie7.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie7/editor_ie7.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/gecko/editor_gecko.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie/editor_ie.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie/dialog_ie.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/dialog_iequirks.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/editor_iequirks.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/dialog/dialog.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config/_defaults.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config/_config.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config/_colors.scss +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/bootstrapck-sample.html +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/css +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/js/jquery-1.11.0.min.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/js/analytics.js +/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/css/bootstrapck-sample.css +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/package.json +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/jquery.datetimepicker.js +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/bower.json +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/jquery.js +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/index.html +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/README.md +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/screen +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/jquery.datetimepicker.css +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/datetimepicker.jquery.json +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/package.json +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/jquery.datetimepicker.js +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/doc.tpl +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/bower.json +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/jquery.js +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/index.html +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/README.md +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/screen +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/jquery.datetimepicker.css +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/datetimepicker.jquery.json +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/karma.conf.js +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/input_in_container_fixed_to_bottom_of_viewport.html +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/input_in_container_fixed_to_top_of_viewport.html +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/index.html +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/app.css +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/destroy.js +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/events.js +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/bootstrap.js +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/options.js +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/init.js +/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/methods.js +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/package.json +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/LICENSE +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/component.json +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/bower.json +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/Gruntfile.coffee +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/install.json +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/README.md +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/coffee +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js/sortable.js +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js/sortable.min.js +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js/install.js +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/api +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/welcome +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/intro.md +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/api/2-Themes.md +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/api/1-Options.md +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/welcome/index.html +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-finder.sass +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-slick.sass +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/_sortable.sass +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-dark.sass +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-minimal.sass +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-light.sass +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-bootstrap.sass +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-light.css +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-slick.css +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-bootstrap.css +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-finder.css +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-minimal.css +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-dark.css +/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/coffee/sortable.coffee +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/images +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.theme.min.css +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.theme.css +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.structure.min.css +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/index.html +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.css +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.min.css +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.js +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.structure.css +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/external +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.min.js +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/external/jquery +/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/external/jquery/jquery.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/package.json +/home/rushilwiz/ion/intranet/static/vendor/messenger/LICENSE +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib +/home/rushilwiz/ion/intranet/static/vendor/messenger/component.json +/home/rushilwiz/ion/intranet/static/vendor/messenger/CONTRIBUTORS +/home/rushilwiz/ion/intranet/static/vendor/messenger/build +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs +/home/rushilwiz/ion/intranet/static/vendor/messenger/bower.json +/home/rushilwiz/ion/intranet/static/vendor/messenger/Gruntfile.coffee +/home/rushilwiz/ion/intranet/static/vendor/messenger/src +/home/rushilwiz/ion/intranet/static/vendor/messenger/README.md +/home/rushilwiz/ion/intranet/static/vendor/messenger/spec +/home/rushilwiz/ion/intranet/static/vendor/messenger/SpecRunner.html +/home/rushilwiz/ion/intranet/static/vendor/messenger/CHANGELOG.md +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1 +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/shims.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/sinon-1.6.0.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/MIT.LICENSE +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/jasmine.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/jasmine-html.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/jasmine.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/backbone +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/jasmine +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/underscore +/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/sinon +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger.min.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger-theme-future.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger-theme-flat.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-block.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-flat.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-future.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-air.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-spinner.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-ice.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/images +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/intro.md +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/images +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/index.html +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/iframe-demo.html +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/location-sel.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/theme-sel.coffee +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/execute.coffee +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/location-sel.coffee +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/demo.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/main.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/theme-sel.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1 +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/shims.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/sinon-1.6.0.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/MIT.LICENSE +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/jasmine.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/jasmine-html.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/jasmine.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/LICENSE +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/README.md +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/demo.html +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/underscore.min.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/coffee-script.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/js2coffee.min.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/LICENSE +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/codemirror.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/codemirror.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript/LICENSE +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript/coffeescript.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript/index.html +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript/index.html +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript/javascript.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript/typescript.html +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/css +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/js/executr.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/css/executr.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/css +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/coffee +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/css/executr.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/coffee/executr.coffee +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/backbone +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/jasmine +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/underscore +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/sinon +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/location-sel.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/theme-sel.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/stylesheet.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/theme-sel.sass +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/pygment_trac.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/location-sel.sass +/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/demo.css +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/js +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/js/preboot.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-air.sass +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-spinner.scss +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-flat.sass +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-future.sass +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-block.sass +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-ice.sass +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger.sass +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee/messenger.coffee +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee/messenger-theme-future.coffee +/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee/messenger-theme-flat.coffee +/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib +/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/MessengerSpec.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/MessengerSpec.coffee +/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib/jquery-1.9.1.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib/backbone-0.9.10.js +/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib/underscore-1.4.4.js +/home/rushilwiz/ion/intranet/templates/blank.html +/home/rushilwiz/ion/intranet/templates/page_with_nav.html +/home/rushilwiz/ion/intranet/templates/error +/home/rushilwiz/ion/intranet/templates/search +/home/rushilwiz/ion/intranet/templates/oauth2_provider +/home/rushilwiz/ion/intranet/templates/monitoring +/home/rushilwiz/ion/intranet/templates/notifications +/home/rushilwiz/ion/intranet/templates/auth +/home/rushilwiz/ion/intranet/templates/users +/home/rushilwiz/ion/intranet/templates/lostfound +/home/rushilwiz/ion/intranet/templates/events +/home/rushilwiz/ion/intranet/templates/eighth +/home/rushilwiz/ion/intranet/templates/files +/home/rushilwiz/ion/intranet/templates/itemreg +/home/rushilwiz/ion/intranet/templates/page_with_header.html +/home/rushilwiz/ion/intranet/templates/docs +/home/rushilwiz/ion/intranet/templates/polls +/home/rushilwiz/ion/intranet/templates/seniors +/home/rushilwiz/ion/intranet/templates/bus +/home/rushilwiz/ion/intranet/templates/signage +/home/rushilwiz/ion/intranet/templates/email_metadata.html +/home/rushilwiz/ion/intranet/templates/page_base.html +/home/rushilwiz/ion/intranet/templates/schedule +/home/rushilwiz/ion/intranet/templates/welcome +/home/rushilwiz/ion/intranet/templates/email_footer.html +/home/rushilwiz/ion/intranet/templates/special +/home/rushilwiz/ion/intranet/templates/maint.html +/home/rushilwiz/ion/intranet/templates/android_client_check.html +/home/rushilwiz/ion/intranet/templates/nav.html +/home/rushilwiz/ion/intranet/templates/groups +/home/rushilwiz/ion/intranet/templates/feature_announcements.html +/home/rushilwiz/ion/intranet/templates/credits.html +/home/rushilwiz/ion/intranet/templates/feedback +/home/rushilwiz/ion/intranet/templates/rest_framework +/home/rushilwiz/ion/intranet/templates/parking +/home/rushilwiz/ion/intranet/templates/dashboard +/home/rushilwiz/ion/intranet/templates/announcements +/home/rushilwiz/ion/intranet/templates/meta.html +/home/rushilwiz/ion/intranet/templates/sessionmgmt +/home/rushilwiz/ion/intranet/templates/emailfwd +/home/rushilwiz/ion/intranet/templates/preferences +/home/rushilwiz/ion/intranet/templates/printing +/home/rushilwiz/ion/intranet/templates/error/503.html +/home/rushilwiz/ion/intranet/templates/error/403.html +/home/rushilwiz/ion/intranet/templates/error/error_base.html +/home/rushilwiz/ion/intranet/templates/error/csrf.html +/home/rushilwiz/ion/intranet/templates/error/404.html +/home/rushilwiz/ion/intranet/templates/error/500.html +/home/rushilwiz/ion/intranet/templates/error/static +/home/rushilwiz/ion/intranet/templates/error/static/503.html +/home/rushilwiz/ion/intranet/templates/error/static/504.html +/home/rushilwiz/ion/intranet/templates/error/static/signage.html +/home/rushilwiz/ion/intranet/templates/error/static/403.html +/home/rushilwiz/ion/intranet/templates/error/static/unavailable.html +/home/rushilwiz/ion/intranet/templates/error/static/502.html +/home/rushilwiz/ion/intranet/templates/error/static/501.html +/home/rushilwiz/ion/intranet/templates/error/static/404.html +/home/rushilwiz/ion/intranet/templates/error/static/500.html +/home/rushilwiz/ion/intranet/templates/search/tips.html +/home/rushilwiz/ion/intranet/templates/search/search_results.html +/home/rushilwiz/ion/intranet/templates/oauth2_provider/authorized-token-delete.html +/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_form.html +/home/rushilwiz/ion/intranet/templates/oauth2_provider/authorize.html +/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_list.html +/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_confirm_delete.html +/home/rushilwiz/ion/intranet/templates/oauth2_provider/authorized-tokens.html +/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_detail.html +/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_registration_form.html +/home/rushilwiz/ion/intranet/templates/oauth2_provider/base.html +/home/rushilwiz/ion/intranet/templates/notifications/gcm_list.html +/home/rushilwiz/ion/intranet/templates/notifications/gcm_post.html +/home/rushilwiz/ion/intranet/templates/auth/ap_week_schedule.html +/home/rushilwiz/ion/intranet/templates/auth/login.html +/home/rushilwiz/ion/intranet/templates/auth/reauth.html +/home/rushilwiz/ion/intranet/templates/auth/about.html +/home/rushilwiz/ion/intranet/templates/auth/reset_password.html +/home/rushilwiz/ion/intranet/templates/users/schedule_rows.html +/home/rushilwiz/ion/intranet/templates/users/all_courses.html +/home/rushilwiz/ion/intranet/templates/users/profile.html +/home/rushilwiz/ion/intranet/templates/users/all_classes.html +/home/rushilwiz/ion/intranet/templates/users/class_room.html +/home/rushilwiz/ion/intranet/templates/users/class.html +/home/rushilwiz/ion/intranet/templates/lostfound/lostitem.html +/home/rushilwiz/ion/intranet/templates/lostfound/founditem_form.html +/home/rushilwiz/ion/intranet/templates/lostfound/founditem.html +/home/rushilwiz/ion/intranet/templates/lostfound/lostitem_form.html +/home/rushilwiz/ion/intranet/templates/lostfound/item_view.html +/home/rushilwiz/ion/intranet/templates/lostfound/home.html +/home/rushilwiz/ion/intranet/templates/lostfound/lostitem_delete.html +/home/rushilwiz/ion/intranet/templates/lostfound/founditem_delete.html +/home/rushilwiz/ion/intranet/templates/events/add_modify.html +/home/rushilwiz/ion/intranet/templates/events/event.html +/home/rushilwiz/ion/intranet/templates/events/public_event.html +/home/rushilwiz/ion/intranet/templates/events/emails +/home/rushilwiz/ion/intranet/templates/events/join_event.html +/home/rushilwiz/ion/intranet/templates/events/delete.html +/home/rushilwiz/ion/intranet/templates/events/scheduled_activity.html +/home/rushilwiz/ion/intranet/templates/events/roster.html +/home/rushilwiz/ion/intranet/templates/events/home.html +/home/rushilwiz/ion/intranet/templates/events/tjstar_widget.html +/home/rushilwiz/ion/intranet/templates/events/emails/admin_approve.html +/home/rushilwiz/ion/intranet/templates/eighth/waitlist_list.html +/home/rushilwiz/ion/intranet/templates/eighth/profile.html +/home/rushilwiz/ion/intranet/templates/eighth/emails +/home/rushilwiz/ion/intranet/templates/eighth/email_students.html +/home/rushilwiz/ion/intranet/templates/eighth/multi_signup.html +/home/rushilwiz/ion/intranet/templates/eighth/profile_often.html +/home/rushilwiz/ion/intranet/templates/eighth/signup.html +/home/rushilwiz/ion/intranet/templates/eighth/roster_list.html +/home/rushilwiz/ion/intranet/templates/eighth/empty_state.html +/home/rushilwiz/ion/intranet/templates/eighth/profile_signup.html +/home/rushilwiz/ion/intranet/templates/eighth/signup_widget.html +/home/rushilwiz/ion/intranet/templates/eighth/roster.html +/home/rushilwiz/ion/intranet/templates/eighth/take_attendance.html +/home/rushilwiz/ion/intranet/templates/eighth/statistics.html +/home/rushilwiz/ion/intranet/templates/eighth/edit_profile.html +/home/rushilwiz/ion/intranet/templates/eighth/profile_header.html +/home/rushilwiz/ion/intranet/templates/eighth/admin +/home/rushilwiz/ion/intranet/templates/eighth/sponsor_widget.html +/home/rushilwiz/ion/intranet/templates/eighth/activity.html +/home/rushilwiz/ion/intranet/templates/eighth/absences.html +/home/rushilwiz/ion/intranet/templates/eighth/profile_history.html +/home/rushilwiz/ion/intranet/templates/eighth/emails/room_changed_single.html +/home/rushilwiz/ion/intranet/templates/eighth/emails/waitlist.html +/home/rushilwiz/ion/intranet/templates/eighth/emails/room_changed_activity.html +/home/rushilwiz/ion/intranet/templates/eighth/emails/activity_cancelled.html +/home/rushilwiz/ion/intranet/templates/eighth/emails/withdrawn_students.html +/home/rushilwiz/ion/intranet/templates/eighth/emails/absence.html +/home/rushilwiz/ion/intranet/templates/eighth/emails/group_signup_complete.html +/home/rushilwiz/ion/intranet/templates/eighth/emails/signup_status.html +/home/rushilwiz/ion/intranet/templates/eighth/emails/import_notify.html +/home/rushilwiz/ion/intranet/templates/eighth/emails/group_signup_error.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/add_block.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/room_utilization.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/delinquent_students.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_activity_id.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/add_activity.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/eighth_admin_page_base.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/room_sanity_check.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/sponsor_sanity_check.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_start_date.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/history.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/sponsor_schedule.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/no_signups_roster.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/dashboard.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/list_users.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/list_sponsors.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/room_utilization_for_block.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/choose_roster_activities.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/sign_up_group.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/copy_form.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/possible_students_add_group.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/keep_room_history.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/clear_comments.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/global_statistics.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/cache.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/after_deadline_signups.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/transfer_students.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/delete_user.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/start_date.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/view_activity_schedule.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/migrate_outstanding_passes.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/open_passes.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/activities_without_attendance.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/delete_form.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/add_sponsor.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/keep_sponsor_history.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/upload_group.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/distribute_group.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_activity.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/schedule_activity.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/maintenance.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/remove_duplicates.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/out_of_building_schedules.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/unschedule_activity.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_group.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_form.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/distribute_students.html +/home/rushilwiz/ion/intranet/templates/eighth/admin/start_of_year.html +/home/rushilwiz/ion/intranet/templates/files/upload.html +/home/rushilwiz/ion/intranet/templates/files/directory.html +/home/rushilwiz/ion/intranet/templates/files/delete.html +/home/rushilwiz/ion/intranet/templates/files/auth.html +/home/rushilwiz/ion/intranet/templates/files/home.html +/home/rushilwiz/ion/intranet/templates/itemreg/search.html +/home/rushilwiz/ion/intranet/templates/itemreg/register_form.html +/home/rushilwiz/ion/intranet/templates/itemreg/item_view.html +/home/rushilwiz/ion/intranet/templates/itemreg/home.html +/home/rushilwiz/ion/intranet/templates/itemreg/register_delete.html +/home/rushilwiz/ion/intranet/templates/docs/accounts.html +/home/rushilwiz/ion/intranet/templates/docs/terminology.html +/home/rushilwiz/ion/intranet/templates/docs/privacy.html +/home/rushilwiz/ion/intranet/templates/polls/add_modify.html +/home/rushilwiz/ion/intranet/templates/polls/poll.html +/home/rushilwiz/ion/intranet/templates/polls/vote.html +/home/rushilwiz/ion/intranet/templates/polls/delete.html +/home/rushilwiz/ion/intranet/templates/polls/home.html +/home/rushilwiz/ion/intranet/templates/polls/results.html +/home/rushilwiz/ion/intranet/templates/seniors/signage.html +/home/rushilwiz/ion/intranet/templates/seniors/login.html +/home/rushilwiz/ion/intranet/templates/seniors/login_top.html +/home/rushilwiz/ion/intranet/templates/seniors/add.html +/home/rushilwiz/ion/intranet/templates/seniors/home.html +/home/rushilwiz/ion/intranet/templates/bus/home.html +/home/rushilwiz/ion/intranet/templates/signage/pages +/home/rushilwiz/ion/intranet/templates/signage/base.html +/home/rushilwiz/ion/intranet/templates/signage/pages/hello_world.html +/home/rushilwiz/ion/intranet/templates/signage/pages/announcements.html +/home/rushilwiz/ion/intranet/templates/signage/pages/eighth.html +/home/rushilwiz/ion/intranet/templates/signage/pages/bus.html +/home/rushilwiz/ion/intranet/templates/schedule/admin_daytype.html +/home/rushilwiz/ion/intranet/templates/schedule/month.html +/home/rushilwiz/ion/intranet/templates/schedule/embed.html +/home/rushilwiz/ion/intranet/templates/schedule/admin_add.html +/home/rushilwiz/ion/intranet/templates/schedule/admin_comment.html +/home/rushilwiz/ion/intranet/templates/schedule/week.html +/home/rushilwiz/ion/intranet/templates/schedule/view.html +/home/rushilwiz/ion/intranet/templates/schedule/admin_home.html +/home/rushilwiz/ion/intranet/templates/schedule/fill.html +/home/rushilwiz/ion/intranet/templates/schedule/week_view.html +/home/rushilwiz/ion/intranet/templates/schedule/widget.html +/home/rushilwiz/ion/intranet/templates/schedule/calendar.html +/home/rushilwiz/ion/intranet/templates/welcome/teacher.html +/home/rushilwiz/ion/intranet/templates/welcome/eighth_policy.html +/home/rushilwiz/ion/intranet/templates/welcome/mail_forwarding.html +/home/rushilwiz/ion/intranet/templates/welcome/student.html +/home/rushilwiz/ion/intranet/templates/welcome/base.html +/home/rushilwiz/ion/intranet/templates/special/hoco_ribbon.html +/home/rushilwiz/ion/intranet/templates/special/hoco_scores.html +/home/rushilwiz/ion/intranet/templates/groups/addmodify.html +/home/rushilwiz/ion/intranet/templates/groups/groups.html +/home/rushilwiz/ion/intranet/templates/feedback/email.html +/home/rushilwiz/ion/intranet/templates/feedback/form.html +/home/rushilwiz/ion/intranet/templates/rest_framework/login.html +/home/rushilwiz/ion/intranet/templates/rest_framework/api.html +/home/rushilwiz/ion/intranet/templates/parking/joint.html +/home/rushilwiz/ion/intranet/templates/parking/intro.html +/home/rushilwiz/ion/intranet/templates/parking/car.html +/home/rushilwiz/ion/intranet/templates/parking/form.html +/home/rushilwiz/ion/intranet/templates/dashboard/admin.html +/home/rushilwiz/ion/intranet/templates/dashboard/dashboard.html +/home/rushilwiz/ion/intranet/templates/dashboard/eighth_info.html +/home/rushilwiz/ion/intranet/templates/dashboard/promo.html +/home/rushilwiz/ion/intranet/templates/dashboard/senior_forwarding.html +/home/rushilwiz/ion/intranet/templates/dashboard/links.html +/home/rushilwiz/ion/intranet/templates/dashboard/seniors.html +/home/rushilwiz/ion/intranet/templates/announcements/add_modify.html +/home/rushilwiz/ion/intranet/templates/announcements/announcement.html +/home/rushilwiz/ion/intranet/templates/announcements/approve.html +/home/rushilwiz/ion/intranet/templates/announcements/request_status.html +/home/rushilwiz/ion/intranet/templates/announcements/emails +/home/rushilwiz/ion/intranet/templates/announcements/view.html +/home/rushilwiz/ion/intranet/templates/announcements/request.html +/home/rushilwiz/ion/intranet/templates/announcements/delete.html +/home/rushilwiz/ion/intranet/templates/announcements/success.html +/home/rushilwiz/ion/intranet/templates/announcements/emails/announcement_approved.html +/home/rushilwiz/ion/intranet/templates/announcements/emails/teacher_approve.html +/home/rushilwiz/ion/intranet/templates/announcements/emails/announcement_posted.html +/home/rushilwiz/ion/intranet/templates/announcements/emails/admin_approve.html +/home/rushilwiz/ion/intranet/templates/sessionmgmt/index.html +/home/rushilwiz/ion/intranet/templates/emailfwd/senior_forward.html +/home/rushilwiz/ion/intranet/templates/preferences/preferences.html +/home/rushilwiz/ion/intranet/templates/preferences/privacy_options.html +/home/rushilwiz/ion/intranet/templates/printing/print.html +/home/rushilwiz/ion/intranet/templates/printing/print_form.html +/home/rushilwiz/ion/scripts/make_dark_pattern_images.py +/home/rushilwiz/ion/scripts/validate-commit-messages.py +/home/rushilwiz/ion/scripts/get_ldif.py +/home/rushilwiz/ion/config/bash_completion.d +/home/rushilwiz/ion/config/krb5.conf +/home/rushilwiz/ion/config/devconfig.json +/home/rushilwiz/ion/config/devconfig.json.sample +/home/rushilwiz/ion/config/bash_completion.d/fab +/home/rushilwiz/ctf/google-ctf +/home/rushilwiz/ctf/google-ctf/day1 +/home/rushilwiz/ctf/google-ctf/day1/rand2.id2 +/home/rushilwiz/ctf/google-ctf/day1/rand2.id0 +/home/rushilwiz/ctf/google-ctf/day1/rand2.id1 +/home/rushilwiz/ctf/google-ctf/day1/rand2.til +/home/rushilwiz/ctf/google-ctf/day1/rand2.nam +/home/rushilwiz/ctf/google-ctf/day1/rand2 +/home/rushilwiz/Projects/hoco2020 +/home/rushilwiz/Projects/selenium +/home/rushilwiz/Projects/webserver +/home/rushilwiz/Projects/chirper +/home/rushilwiz/Projects/hoco2020/index.html +/home/rushilwiz/Projects/hoco2020/styles.css +/home/rushilwiz/Projects/hoco2020/main.js +/home/rushilwiz/Projects/hoco2020/package-lock.json +/home/rushilwiz/Projects/selenium/data.json +/home/rushilwiz/Projects/selenium/geckodriver.log +/home/rushilwiz/Projects/selenium/webscraper.py +/home/rushilwiz/Projects/chirper/README.md +/home/rushilwiz/Projects/chirper/chirper +/home/rushilwiz/Projects/chirper/chirper/db.sqlite3 +/home/rushilwiz/Projects/chirper/chirper/users +/home/rushilwiz/Projects/chirper/chirper/blog +/home/rushilwiz/Projects/chirper/chirper/manage.py +/home/rushilwiz/Projects/chirper/chirper/media +/home/rushilwiz/Projects/chirper/chirper/chirper +/home/rushilwiz/Projects/chirper/chirper/file.html +/home/rushilwiz/Projects/chirper/chirper/users/migrations +/home/rushilwiz/Projects/chirper/chirper/users/__init__.py +/home/rushilwiz/Projects/chirper/chirper/users/tests.py +/home/rushilwiz/Projects/chirper/chirper/users/models.py +/home/rushilwiz/Projects/chirper/chirper/users/apps.py +/home/rushilwiz/Projects/chirper/chirper/users/admin.py +/home/rushilwiz/Projects/chirper/chirper/users/__pycache__ +/home/rushilwiz/Projects/chirper/chirper/users/views.py +/home/rushilwiz/Projects/chirper/chirper/users/forms.py +/home/rushilwiz/Projects/chirper/chirper/users/signals.py +/home/rushilwiz/Projects/chirper/chirper/users/templates +/home/rushilwiz/Projects/chirper/chirper/users/migrations/__init__.py +/home/rushilwiz/Projects/chirper/chirper/users/migrations/0001_initial.py +/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__ +/home/rushilwiz/Projects/chirper/chirper/users/migrations/0002_auto_20200526_0344.py +/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__/0001_initial.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__/0002_auto_20200526_0344.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/admin.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/forms.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/signals.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/models.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/apps.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/views.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/urls.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/users/templates/users +/home/rushilwiz/Projects/chirper/chirper/users/templates/users/login.html +/home/rushilwiz/Projects/chirper/chirper/users/templates/users/profile.html +/home/rushilwiz/Projects/chirper/chirper/users/templates/users/logout.html +/home/rushilwiz/Projects/chirper/chirper/blog/migrations +/home/rushilwiz/Projects/chirper/chirper/blog/__init__.py +/home/rushilwiz/Projects/chirper/chirper/blog/tests.py +/home/rushilwiz/Projects/chirper/chirper/blog/models.py +/home/rushilwiz/Projects/chirper/chirper/blog/apps.py +/home/rushilwiz/Projects/chirper/chirper/blog/admin.py +/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__ +/home/rushilwiz/Projects/chirper/chirper/blog/views.py +/home/rushilwiz/Projects/chirper/chirper/blog/static +/home/rushilwiz/Projects/chirper/chirper/blog/urls.py +/home/rushilwiz/Projects/chirper/chirper/blog/templates +/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__init__.py +/home/rushilwiz/Projects/chirper/chirper/blog/migrations/0002_auto_20200430_0415.py +/home/rushilwiz/Projects/chirper/chirper/blog/migrations/0001_initial.py +/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__ +/home/rushilwiz/Projects/chirper/chirper/blog/migrations/0003_remove_post_title.py +/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/0002_auto_20200430_0415.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/0001_initial.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/0003_remove_post_title.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/admin.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/models.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/apps.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/views.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/urls.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/blog/static/android-chrome-192x192.png:Zone.Identifier +/home/rushilwiz/Projects/chirper/chirper/blog/static/favicon.ico:Zone.Identifier +/home/rushilwiz/Projects/chirper/chirper/blog/static/android-chrome-512x512.png:Zone.Identifier +/home/rushilwiz/Projects/chirper/chirper/blog/static/favicon-16x16.png:Zone.Identifier +/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI Bold Italic.ttf:Zone.Identifier +/home/rushilwiz/Projects/chirper/chirper/blog/static/site.webmanifest +/home/rushilwiz/Projects/chirper/chirper/blog/static/blog +/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI.ttf:Zone.Identifier +/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI Italic.ttf:Zone.Identifier +/home/rushilwiz/Projects/chirper/chirper/blog/static/site.webmanifest:Zone.Identifier +/home/rushilwiz/Projects/chirper/chirper/blog/static/apple-touch-icon.png:Zone.Identifier +/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI Bold.ttf:Zone.Identifier +/home/rushilwiz/Projects/chirper/chirper/blog/static/favicon-32x32.png:Zone.Identifier +/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/futura.ttf +/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI.ttf +/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI Italic.ttf +/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI Bold Italic.ttf +/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/styles.css +/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI Bold.ttf +/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog +/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/user_posts.html +/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/post_detail.html +/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/post_confirm_delete.html +/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/home.html +/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/about.html +/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/post_form.html +/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/base.html +/home/rushilwiz/Projects/chirper/chirper/media/profile_pics +/home/rushilwiz/Projects/chirper/chirper/chirper/wsgi.py +/home/rushilwiz/Projects/chirper/chirper/chirper/__init__.py +/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__ +/home/rushilwiz/Projects/chirper/chirper/chirper/settings.py +/home/rushilwiz/Projects/chirper/chirper/chirper/asgi.py +/home/rushilwiz/Projects/chirper/chirper/chirper/urls.py +/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/wsgi.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/settings.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/urls.cpython-38.pyc +/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/SkoolOS/2023rumareti +/home/rushilwiz/SkoolOS/eharris1 +/home/rushilwiz/SkoolOS/LICENSE +/home/rushilwiz/SkoolOS/SkoolOS +/home/rushilwiz/SkoolOS/skoolos.py +/home/rushilwiz/SkoolOS/bgservice.html +/home/rushilwiz/SkoolOS/skoolos.html +/home/rushilwiz/SkoolOS/docs +/home/rushilwiz/SkoolOS/sstern1 +/home/rushilwiz/SkoolOS/rushilwiz +/home/rushilwiz/SkoolOS/bgservice.checker.html +/home/rushilwiz/SkoolOS/bgservice +/home/rushilwiz/SkoolOS/README.md +/home/rushilwiz/SkoolOS/chromedriver +/home/rushilwiz/SkoolOS/CLI +/home/rushilwiz/SkoolOS/Website +/home/rushilwiz/SkoolOS/bgservice.bgservice.html +/home/rushilwiz/SkoolOS/2023rumareti/README.md +/home/rushilwiz/SkoolOS/eharris1/Random_eharris1 +/home/rushilwiz/SkoolOS/eharris1/Civ_eharris1 +/home/rushilwiz/SkoolOS/eharris1/Truck_eharris1 +/home/rushilwiz/SkoolOS/eharris1/History12_eharris1 +/home/rushilwiz/SkoolOS/eharris1/Art12_eharris1 +/home/rushilwiz/SkoolOS/eharris1/English12_eharris1 +/home/rushilwiz/SkoolOS/eharris1/Random_eharris1/README.md +/home/rushilwiz/SkoolOS/eharris1/Civ_eharris1/README.md +/home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1 +/home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/README.md +/home/rushilwiz/SkoolOS/eharris1/Truck_eharris1/Assignment1/README.md +/home/rushilwiz/SkoolOS/eharris1/History12_eharris1/README.md +/home/rushilwiz/SkoolOS/eharris1/Art12_eharris1/README.md +/home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 +/home/rushilwiz/SkoolOS/SkoolOS/logs +/home/rushilwiz/SkoolOS/SkoolOS/logs/skooloslog +/home/rushilwiz/SkoolOS/docs/build +/home/rushilwiz/SkoolOS/docs/source +/home/rushilwiz/SkoolOS/docs/Makefile +/home/rushilwiz/SkoolOS/docs/make.bat +/home/rushilwiz/SkoolOS/docs/build/html +/home/rushilwiz/SkoolOS/docs/build/doctrees +/home/rushilwiz/SkoolOS/docs/build/html/cli.html +/home/rushilwiz/SkoolOS/docs/build/html/objects.inv +/home/rushilwiz/SkoolOS/docs/build/html/genindex.html +/home/rushilwiz/SkoolOS/docs/build/html/license.html +/home/rushilwiz/SkoolOS/docs/build/html/search.html +/home/rushilwiz/SkoolOS/docs/build/html/_static +/home/rushilwiz/SkoolOS/docs/build/html/webapp.html +/home/rushilwiz/SkoolOS/docs/build/html/index.html +/home/rushilwiz/SkoolOS/docs/build/html/install.html +/home/rushilwiz/SkoolOS/docs/build/html/background_service.html +/home/rushilwiz/SkoolOS/docs/build/html/searchindex.js +/home/rushilwiz/SkoolOS/docs/build/html/_sources +/home/rushilwiz/SkoolOS/docs/build/html/_static/searchtools.js +/home/rushilwiz/SkoolOS/docs/build/html/_static/alabaster.css +/home/rushilwiz/SkoolOS/docs/build/html/_static/pygments.css +/home/rushilwiz/SkoolOS/docs/build/html/_static/language_data.js +/home/rushilwiz/SkoolOS/docs/build/html/_static/basic.css +/home/rushilwiz/SkoolOS/docs/build/html/_static/doctools.js +/home/rushilwiz/SkoolOS/docs/build/html/_static/jquery.js +/home/rushilwiz/SkoolOS/docs/build/html/_static/underscore.js +/home/rushilwiz/SkoolOS/docs/build/html/_static/underscore-1.3.1.js +/home/rushilwiz/SkoolOS/docs/build/html/_static/custom.css +/home/rushilwiz/SkoolOS/docs/build/html/_static/jquery-3.5.1.js +/home/rushilwiz/SkoolOS/docs/build/html/_static/documentation_options.js +/home/rushilwiz/SkoolOS/docs/build/doctrees/background_service.doctree +/home/rushilwiz/SkoolOS/docs/build/doctrees/license.doctree +/home/rushilwiz/SkoolOS/docs/build/doctrees/environment.pickle +/home/rushilwiz/SkoolOS/docs/build/doctrees/install.doctree +/home/rushilwiz/SkoolOS/docs/build/doctrees/index.doctree +/home/rushilwiz/SkoolOS/docs/build/doctrees/cli.doctree +/home/rushilwiz/SkoolOS/docs/build/doctrees/webapp.doctree +/home/rushilwiz/SkoolOS/docs/source/license.rst +/home/rushilwiz/SkoolOS/docs/source/_static +/home/rushilwiz/SkoolOS/docs/source/cli.rst +/home/rushilwiz/SkoolOS/docs/source/_templates +/home/rushilwiz/SkoolOS/docs/source/conf.py +/home/rushilwiz/SkoolOS/docs/source/webapp.rst +/home/rushilwiz/SkoolOS/docs/source/install.rst +/home/rushilwiz/SkoolOS/docs/source/background_service.rst +/home/rushilwiz/SkoolOS/docs/source/index.rst +/home/rushilwiz/SkoolOS/sstern1/wow4_sstern1 +/home/rushilwiz/SkoolOS/sstern1/Students +/home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1 +/home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hailstone +/home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/Hackathon +/home/rushilwiz/SkoolOS/sstern1/wow4_sstern1/README.md +/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 +/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/2023rumareti +/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/rushilwiz +/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/2023rumareti/README.md +/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/rushilwiz/Hailstone +/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/rushilwiz/Hackathon +/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/rushilwiz/README.md +/home/rushilwiz/SkoolOS/sstern1/2023clas8_sstern1/README.md +/home/rushilwiz/SkoolOS/rushilwiz/README.md +/home/rushilwiz/SkoolOS/bgservice/__init__.py +/home/rushilwiz/SkoolOS/bgservice/SkoolOS +/home/rushilwiz/SkoolOS/bgservice/__pycache__ +/home/rushilwiz/SkoolOS/bgservice/bgservice.py +/home/rushilwiz/SkoolOS/bgservice/test.py +/home/rushilwiz/SkoolOS/bgservice/checker.py +/home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs +/home/rushilwiz/SkoolOS/bgservice/__pycache__/checker.cpython-38.pyc +/home/rushilwiz/SkoolOS/bgservice/__pycache__/bgservice.cpython-38.pyc +/home/rushilwiz/SkoolOS/bgservice/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/SkoolOS/chromedriver/chromedriver.exe +/home/rushilwiz/SkoolOS/chromedriver/chromedriver-linux +/home/rushilwiz/SkoolOS/chromedriver/chromedriver-mac +/home/rushilwiz/SkoolOS/CLI/teacher.py +/home/rushilwiz/SkoolOS/CLI/__pycache__ +/home/rushilwiz/SkoolOS/CLI/student.py +/home/rushilwiz/SkoolOS/CLI/__pycache__/student.cpython-38.pyc +/home/rushilwiz/SkoolOS/CLI/__pycache__/teacher.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/api +/home/rushilwiz/SkoolOS/Website/db.sqlite3 +/home/rushilwiz/SkoolOS/Website/users +/home/rushilwiz/SkoolOS/Website/manage.py +/home/rushilwiz/SkoolOS/Website/skoolos +/home/rushilwiz/SkoolOS/Website/config +/home/rushilwiz/SkoolOS/Website/templates +/home/rushilwiz/SkoolOS/Website/api/migrations +/home/rushilwiz/SkoolOS/Website/api/__init__.py +/home/rushilwiz/SkoolOS/Website/api/serializers.py +/home/rushilwiz/SkoolOS/Website/api/views-back.py +/home/rushilwiz/SkoolOS/Website/api/tests.py +/home/rushilwiz/SkoolOS/Website/api/models.py +/home/rushilwiz/SkoolOS/Website/api/apps.py +/home/rushilwiz/SkoolOS/Website/api/admin.py +/home/rushilwiz/SkoolOS/Website/api/maker.py +/home/rushilwiz/SkoolOS/Website/api/__pycache__ +/home/rushilwiz/SkoolOS/Website/api/auth.py +/home/rushilwiz/SkoolOS/Website/api/views.py +/home/rushilwiz/SkoolOS/Website/api/signals.py +/home/rushilwiz/SkoolOS/Website/api/permissions.py +/home/rushilwiz/SkoolOS/Website/api/urls.py +/home/rushilwiz/SkoolOS/Website/api/migrations/__init__.py +/home/rushilwiz/SkoolOS/Website/api/migrations/0002_student_log.py +/home/rushilwiz/SkoolOS/Website/api/migrations/0001_initial.py +/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__ +/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__/0002_student_log.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__/0001_initial.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/api/__pycache__/admin.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/api/__pycache__/models.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/api/__pycache__/permissions.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/api/__pycache__/views.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/api/__pycache__/serializers.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/api/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/users/migrations +/home/rushilwiz/SkoolOS/Website/users/__init__.py +/home/rushilwiz/SkoolOS/Website/users/tests.py +/home/rushilwiz/SkoolOS/Website/users/models.py +/home/rushilwiz/SkoolOS/Website/users/apps.py +/home/rushilwiz/SkoolOS/Website/users/admin.py +/home/rushilwiz/SkoolOS/Website/users/__pycache__ +/home/rushilwiz/SkoolOS/Website/users/views.py +/home/rushilwiz/SkoolOS/Website/users/forms.py +/home/rushilwiz/SkoolOS/Website/users/pwd.py +/home/rushilwiz/SkoolOS/Website/users/static +/home/rushilwiz/SkoolOS/Website/users/templates +/home/rushilwiz/SkoolOS/Website/users/migrations/__init__.py +/home/rushilwiz/SkoolOS/Website/users/migrations/0001_initial.py +/home/rushilwiz/SkoolOS/Website/users/migrations/__pycache__ +/home/rushilwiz/SkoolOS/Website/users/migrations/__pycache__/0001_initial.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/users/migrations/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/users/__pycache__/admin.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/users/__pycache__/forms.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/users/__pycache__/models.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/users/__pycache__/apps.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/users/__pycache__/views.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/users/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/users/static/users +/home/rushilwiz/SkoolOS/Website/users/static/users/styles.css +/home/rushilwiz/SkoolOS/Website/users/templates/users +/home/rushilwiz/SkoolOS/Website/users/templates/users/login.html +/home/rushilwiz/SkoolOS/Website/users/templates/users/create_account.html +/home/rushilwiz/SkoolOS/Website/users/templates/users/register.html +/home/rushilwiz/SkoolOS/Website/users/templates/users/base.html +/home/rushilwiz/SkoolOS/Website/skoolos/__init__.py +/home/rushilwiz/SkoolOS/Website/skoolos/tests.py +/home/rushilwiz/SkoolOS/Website/skoolos/models.py +/home/rushilwiz/SkoolOS/Website/skoolos/apps.py +/home/rushilwiz/SkoolOS/Website/skoolos/admin.py +/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__ +/home/rushilwiz/SkoolOS/Website/skoolos/views.py +/home/rushilwiz/SkoolOS/Website/skoolos/forms.py +/home/rushilwiz/SkoolOS/Website/skoolos/static +/home/rushilwiz/SkoolOS/Website/skoolos/urls.py +/home/rushilwiz/SkoolOS/Website/skoolos/templates +/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/admin.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/forms.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/models.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/apps.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/views.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/urls.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos +/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/futura.ttf +/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI.ttf +/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI Italic.ttf +/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI Bold Italic.ttf +/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/styles.css +/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI Bold.ttf +/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos +/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/profile_teacher.html +/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/class_detail.html +/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/profile_student.html +/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/createClass.html +/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/home.html +/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/base.html +/home/rushilwiz/SkoolOS/Website/config/wsgi.py +/home/rushilwiz/SkoolOS/Website/config/__init__.py +/home/rushilwiz/SkoolOS/Website/config/__pycache__ +/home/rushilwiz/SkoolOS/Website/config/settings.py +/home/rushilwiz/SkoolOS/Website/config/asgi.py +/home/rushilwiz/SkoolOS/Website/config/urls.py +/home/rushilwiz/SkoolOS/Website/config/__pycache__/wsgi.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/config/__pycache__/settings.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/config/__pycache__/urls.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/config/__pycache__/__init__.cpython-38.pyc +/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider +/home/rushilwiz/SkoolOS/Website/templates/base.html +/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider/login.html +/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider/authorize.html +/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider/logged_out.html +/home/rushilwiz/idafree-7.0/qt.conf +/home/rushilwiz/idafree-7.0/uninstall.dat +/home/rushilwiz/idafree-7.0/assistant +/home/rushilwiz/idafree-7.0/ida.hlp +/home/rushilwiz/idafree-7.0/idc +/home/rushilwiz/idafree-7.0/libida64.so +/home/rushilwiz/idafree-7.0/loaders +/home/rushilwiz/idafree-7.0/libX11-xcb.so.1 +/home/rushilwiz/idafree-7.0/sig +/home/rushilwiz/idafree-7.0/libQt5Gui.so.5 +/home/rushilwiz/idafree-7.0/libQt5XcbQpa.so.5 +/home/rushilwiz/idafree-7.0/libQt5DBus.so.5 +/home/rushilwiz/idafree-7.0/libclpx.so +/home/rushilwiz/idafree-7.0/uninstall +/home/rushilwiz/idafree-7.0/ida64 +/home/rushilwiz/idafree-7.0/libQt5Network.so.5 +/home/rushilwiz/idafree-7.0/libQt5CLucene.so.5 +/home/rushilwiz/idafree-7.0/ida64.int +/home/rushilwiz/idafree-7.0/procs +/home/rushilwiz/idafree-7.0/ids +/home/rushilwiz/idafree-7.0/cfg +/home/rushilwiz/idafree-7.0/til +/home/rushilwiz/idafree-7.0/libQt5Widgets.so.5 +/home/rushilwiz/idafree-7.0/libQt5Help.so.5 +/home/rushilwiz/idafree-7.0/qidahelpcollection.qhc +/home/rushilwiz/idafree-7.0/dbgsrv +/home/rushilwiz/idafree-7.0/libQt5PrintSupport.so.5 +/home/rushilwiz/idafree-7.0/qidahelp.qch +/home/rushilwiz/idafree-7.0/libQt5Sql.so.5 +/home/rushilwiz/idafree-7.0/libQt5Core.so.5 +/home/rushilwiz/idafree-7.0/plugins +/home/rushilwiz/idafree-7.0/Uninstall IDA Freeware 7.0.desktop +/home/rushilwiz/idafree-7.0/libdwarfx.so +/home/rushilwiz/idafree-7.0/idc/idc.idc +/home/rushilwiz/idafree-7.0/loaders/pe64.so +/home/rushilwiz/idafree-7.0/loaders/macho64.so +/home/rushilwiz/idafree-7.0/loaders/elf64.so +/home/rushilwiz/idafree-7.0/sig/list +/home/rushilwiz/idafree-7.0/sig/pc +/home/rushilwiz/idafree-7.0/sig/pc/vc64mfc.sig +/home/rushilwiz/idafree-7.0/sig/pc/msmfc64d.sig +/home/rushilwiz/idafree-7.0/sig/pc/msmfc64.sig +/home/rushilwiz/idafree-7.0/sig/pc/vc64_14.sig +/home/rushilwiz/idafree-7.0/sig/pc/ms64wdk.sig +/home/rushilwiz/idafree-7.0/sig/pc/bcb5rt.sig +/home/rushilwiz/idafree-7.0/sig/pc/msmfc64u.sig +/home/rushilwiz/idafree-7.0/sig/pc/vc32rtf.sig +/home/rushilwiz/idafree-7.0/sig/pc/vc64atl.sig +/home/rushilwiz/idafree-7.0/sig/pc/vc64rtf.sig +/home/rushilwiz/idafree-7.0/sig/pc/vc64ucrt.sig +/home/rushilwiz/idafree-7.0/sig/pc/iclapp64.sig +/home/rushilwiz/idafree-7.0/sig/pc/mssdk64.sig +/home/rushilwiz/idafree-7.0/sig/pc/vc64extra.sig +/home/rushilwiz/idafree-7.0/sig/pc/win64unx.sig +/home/rushilwiz/idafree-7.0/sig/pc/vcseh.sig +/home/rushilwiz/idafree-7.0/sig/pc/vc64seh.sig +/home/rushilwiz/idafree-7.0/sig/pc/pe64.sig +/home/rushilwiz/idafree-7.0/procs/pc64.so +/home/rushilwiz/idafree-7.0/ids/win7.zip +/home/rushilwiz/idafree-7.0/ids/idsnames +/home/rushilwiz/idafree-7.0/cfg/exceptions.cfg +/home/rushilwiz/idafree-7.0/cfg/idagui.cfg +/home/rushilwiz/idafree-7.0/cfg/ida.cfg +/home/rushilwiz/idafree-7.0/til/gnuunx64.til +/home/rushilwiz/idafree-7.0/til/pc +/home/rushilwiz/idafree-7.0/til/macosx64.til +/home/rushilwiz/idafree-7.0/til/pc/gnulnx_x64.til +/home/rushilwiz/idafree-7.0/til/pc/ntddk64.til +/home/rushilwiz/idafree-7.0/til/pc/vc6win.til +/home/rushilwiz/idafree-7.0/til/pc/vc10_64.til +/home/rushilwiz/idafree-7.0/til/pc/mssdk.til +/home/rushilwiz/idafree-7.0/til/pc/vc8amd64.til +/home/rushilwiz/idafree-7.0/til/pc/bcb5win.til +/home/rushilwiz/idafree-7.0/plugins/bdescr64.so +/home/rushilwiz/idafree-7.0/plugins/platformthemes +/home/rushilwiz/idafree-7.0/plugins/plugins.cfg +/home/rushilwiz/idafree-7.0/plugins/tds64.so +/home/rushilwiz/idafree-7.0/plugins/objc64.so +/home/rushilwiz/idafree-7.0/plugins/dwarf64.so +/home/rushilwiz/idafree-7.0/plugins/linux_user64.so +/home/rushilwiz/idafree-7.0/plugins/platforms +/home/rushilwiz/idafree-7.0/plugins/dbg64.so +/home/rushilwiz/idafree-7.0/plugins/platformthemes/libqgtk2.so +/home/rushilwiz/idafree-7.0/plugins/platforms/libqoffscreen.so +/home/rushilwiz/idafree-7.0/plugins/platforms/libqminimal.so +/home/rushilwiz/idafree-7.0/plugins/platforms/libqlinuxfb.so +/home/rushilwiz/idafree-7.0/plugins/platforms/libqxcb.so +/home/rushilwiz/Documents/Google Web Designer +/home/rushilwiz/Documents/login.html +/home/rushilwiz/Documents/GitHub +/home/rushilwiz/Documents/the_r_ontheledgeandshit_starterpack.kra +/home/rushilwiz/Documents/Google Web Designer/templates +/home/rushilwiz/Documents/GitHub/crucialnet +/home/rushilwiz/Documents/GitHub/crucialnet/post_templates +/home/rushilwiz/Documents/GitHub/crucialnet/server +/home/rushilwiz/Documents/GitHub/crucialnet/site +/home/rushilwiz/Documents/GitHub/crucialnet/README.md +/home/rushilwiz/Documents/GitHub/crucialnet/testing +/home/rushilwiz/Documents/GitHub/crucialnet/under_construction +/home/rushilwiz/Documents/GitHub/crucialnet/ssl +/home/rushilwiz/Documents/GitHub/crucialnet/post_templates/index.html +/home/rushilwiz/Documents/GitHub/crucialnet/server/pswd.exe +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives +/home/rushilwiz/Documents/GitHub/crucialnet/site/site.webmanifest +/home/rushilwiz/Documents/GitHub/crucialnet/site/js +/home/rushilwiz/Documents/GitHub/crucialnet/site/404 +/home/rushilwiz/Documents/GitHub/crucialnet/site/browserconfig.xml +/home/rushilwiz/Documents/GitHub/crucialnet/site/index.html +/home/rushilwiz/Documents/GitHub/crucialnet/site/resume +/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me +/home/rushilwiz/Documents/GitHub/crucialnet/site/css +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/index.html +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019 +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018 +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/style.css +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/images +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/backgrounds +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/card-images +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/poststyle.css +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/2019 +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/2019/01 +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/2019/01/05 +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/card-images/fmu.PNG +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/card-images/inbom.PNG +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts/Gotham-Bold.otf +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts/Sans-Thin.otf +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts/futura-pt-light.otf +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019/01 +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019/01/05 +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019/01/05/index.html +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018/12 +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018/12/22 +/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018/12/22/index.html +/home/rushilwiz/Documents/GitHub/crucialnet/site/js/main.js +/home/rushilwiz/Documents/GitHub/crucialnet/site/404/style.css +/home/rushilwiz/Documents/GitHub/crucialnet/site/404/index.html +/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/site.webmanifest +/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/js +/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/browserconfig.xml +/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/index.html +/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css +/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/js/main.js +/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/style.css +/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/fonts +/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/fonts/Gotham-Bold.otf +/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/fonts/Sans-Thin.otf +/home/rushilwiz/Documents/GitHub/crucialnet/site/css/style.css +/home/rushilwiz/Documents/GitHub/crucialnet/site/css/res +/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts +/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/Gotham-Bold.otf +/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/Proxima Nova Alt Light.otf +/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/Sans-Thin.otf +/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/futura-pt-light.otf +/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog +/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar/style.css +/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar/index.html +/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar/main.js +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/page1.html +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/TEMPLATE +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019 +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/images +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/backgrounds +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/card-images +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/card-images/fm2u.PNG +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts/Gotham-Bold.otf +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts/Sans-Thin.otf +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts/futura-pt-light.otf +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/TEMPLATE/index.html +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019/01 +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019/01/01 +/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019/01/01/index.html +/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/js +/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/index.html +/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/css +/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/js/index.js +/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/css/styles.css +/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105 +/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg.vmdk +/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg-configdrive.vmdk +/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105.vbox-prev +/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105.vbox +/home/rushilwiz/crucialnet/the-archives +/home/rushilwiz/crucialnet/site.webmanifest +/home/rushilwiz/crucialnet/js +/home/rushilwiz/crucialnet/404 +/home/rushilwiz/crucialnet/browserconfig.xml +/home/rushilwiz/crucialnet/index.html +/home/rushilwiz/crucialnet/resume +/home/rushilwiz/crucialnet/README.md +/home/rushilwiz/crucialnet/contact-me +/home/rushilwiz/crucialnet/css +/home/rushilwiz/crucialnet/the-archives/res +/home/rushilwiz/crucialnet/the-archives/index.html +/home/rushilwiz/crucialnet/the-archives/2019 +/home/rushilwiz/crucialnet/the-archives/post-template.html +/home/rushilwiz/crucialnet/the-archives/2018 +/home/rushilwiz/crucialnet/the-archives/res/style.css +/home/rushilwiz/crucialnet/the-archives/res/images +/home/rushilwiz/crucialnet/the-archives/res/backgrounds +/home/rushilwiz/crucialnet/the-archives/res/posts +/home/rushilwiz/crucialnet/the-archives/res/card-images +/home/rushilwiz/crucialnet/the-archives/res/fonts +/home/rushilwiz/crucialnet/the-archives/res/posts/poststyle.css +/home/rushilwiz/crucialnet/the-archives/res/posts/2019 +/home/rushilwiz/crucialnet/the-archives/res/posts/2019/01 +/home/rushilwiz/crucialnet/the-archives/res/posts/2019/01/05 +/home/rushilwiz/crucialnet/the-archives/res/card-images/fmu.PNG +/home/rushilwiz/crucialnet/the-archives/res/card-images/inbom.PNG +/home/rushilwiz/crucialnet/the-archives/res/fonts/Gotham-Bold.otf +/home/rushilwiz/crucialnet/the-archives/res/fonts/Sans-Thin.otf +/home/rushilwiz/crucialnet/the-archives/res/fonts/futura-pt-light.otf +/home/rushilwiz/crucialnet/the-archives/2019/01 +/home/rushilwiz/crucialnet/the-archives/2019/01/05 +/home/rushilwiz/crucialnet/the-archives/2019/01/05/index.html +/home/rushilwiz/crucialnet/the-archives/2018/12 +/home/rushilwiz/crucialnet/the-archives/2018/12/22 +/home/rushilwiz/crucialnet/the-archives/2018/12/22/index.html +/home/rushilwiz/crucialnet/js/main.js +/home/rushilwiz/crucialnet/404/style.css +/home/rushilwiz/crucialnet/404/index.html +/home/rushilwiz/crucialnet/contact-me/site.webmanifest +/home/rushilwiz/crucialnet/contact-me/js +/home/rushilwiz/crucialnet/contact-me/browserconfig.xml +/home/rushilwiz/crucialnet/contact-me/index.html +/home/rushilwiz/crucialnet/contact-me/css +/home/rushilwiz/crucialnet/contact-me/js/main.js +/home/rushilwiz/crucialnet/contact-me/css/style.css +/home/rushilwiz/crucialnet/contact-me/css/fonts +/home/rushilwiz/crucialnet/contact-me/css/fonts/Gotham-Bold.otf +/home/rushilwiz/crucialnet/contact-me/css/fonts/Sans-Thin.otf +/home/rushilwiz/crucialnet/css/style.css +/home/rushilwiz/crucialnet/css/res +/home/rushilwiz/crucialnet/css/fonts +/home/rushilwiz/crucialnet/css/fonts/Gotham-Bold.otf +/home/rushilwiz/crucialnet/css/fonts/Proxima Nova Alt Light.otf +/home/rushilwiz/crucialnet/css/fonts/Sans-Thin.otf +/home/rushilwiz/crucialnet/css/fonts/futura-pt-light.otf +/home/rushilwiz/brancher/login.html +/home/rushilwiz/brancher/js +/home/rushilwiz/brancher/404 +/home/rushilwiz/brancher/sliders.html +/home/rushilwiz/brancher/index.html +/home/rushilwiz/brancher/README.md +/home/rushilwiz/brancher/css +/home/rushilwiz/brancher/under_construction +/home/rushilwiz/brancher/index2.html +/home/rushilwiz/brancher/login2.html +/home/rushilwiz/brancher/js/login.js +/home/rushilwiz/brancher/js/main.js +/home/rushilwiz/brancher/404/style.css +/home/rushilwiz/brancher/404/index.html +/home/rushilwiz/brancher/css/styles.css.map +/home/rushilwiz/brancher/css/styles.scss +/home/rushilwiz/brancher/css/res +/home/rushilwiz/brancher/css/styles.css +/home/rushilwiz/brancher/css/fonts +/home/rushilwiz/brancher/css/login.css +/home/rushilwiz/brancher/css/fonts/Gotham-Bold.otf +/home/rushilwiz/brancher/css/fonts/Sans-Thin.otf +/home/rushilwiz/brancher/css/fonts/Coves Light.otf +/home/rushilwiz/brancher/css/fonts/futura-pt-light.otf +/home/rushilwiz/brancher/under_construction/js +/home/rushilwiz/brancher/under_construction/index.html +/home/rushilwiz/brancher/under_construction/css +/home/rushilwiz/brancher/under_construction/js/index.js +/home/rushilwiz/brancher/under_construction/css/styles.css diff --git a/bgservice/SkoolOS/logs/skoolos_06162020-210523 b/bgservice/SkoolOS/logs/skoolos_06162020-210523 deleted file mode 100644 index ba5dc10..0000000 --- a/bgservice/SkoolOS/logs/skoolos_06162020-210523 +++ /dev/null @@ -1,138987 +0,0 @@ -Start time: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:26 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:27 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/.gitconfig -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/HEAD -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/.gitconfig -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/.gitconfig -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/packed-refs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/master -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/HEAD -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/refs/heads/development -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin/master -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/refs/remotes/origin/master -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/refs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/refs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/refs/stash -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack/pack-d1adb00474cc615655698dfb33719bf9b678cabc.idx -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/35/78aea75a931a4cd7d53f5e019c7f7b05f7ef69 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/35/78aea75a931a4cd7d53f5e019c7f7b05f7ef69 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/72/af91c718aebf454b395bddc4acb2315b8c7384 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/72/af91c718aebf454b395bddc4acb2315b8c7384 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/2f/f6e80e62bf02995e4770c5c9a5cc8f7dd70700 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/db/8cd88668289fcf8211570d22f0eb177eba3326 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/ea/5bf7c071c912090e912f927c2f279e3dd53044 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/a7/202e459056245e161976a32c9cb16c17438f24 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/b5/70006523192728ac3b01050b8dd8ee4910cfd7 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/4b/e9377145039c785f99e180611b7080b6ae3962 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/cb/d3ddb4e756a0f20a218e5e12e9c0474f8ec793 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/a6/500b4353230b23cb73f394884fdc9b65506215 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/51/20b5b9b392192810e4b4b20e2bb6bed669c33b -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/66/8528d40aeb15b689eb9a5c2191a852828aea28 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/e9/851c0566893b852e4cc4b23222b36a707de9ec -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/c3/f44606e325662cd93bca70a17d7bf45eeab1f5 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/25/f73d6860506cd5848467e4e2f2f1d86d128af9 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/3a/b342119e38e1c9e656260b5dd2d86600fd23cc -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/de/80c69a852988e105f4e7de1789960acc7e6f1d -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/de/103f77df82bf4228697671730c19c3db392605 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/2d/e86475e7fd9d23740a909c3a246a928f09b2b9 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/15/f50b7519075c22916651e1d295dc8fb82fefb5 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/af/ea2c149457362e9d33d8ed134b2d4d5ef8957e -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/4b/60133e82cb9857fcd3ef7e97300eee020c6c61 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/a1/537106db23369ce2c34506aee8925f7b4cd782 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/f2/226364259a8b3b5b4c7e4144ad25551bb657fe -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/c6/92fccd9f81cde4cf56b3aa199ad3b6ef84ec8e -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/65/460b7fb1cc996b5e8cbafc44241bf654b7dd85 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/dc/4a24cfa43f8b6e815df836175c8a401650a38b -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/67/3a17ffe4b6fee61a4b8e26f7d7d0e37f99b8c8 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/f1/1078236e958ccfa88f8f4e6a795ee99d4bdb9d -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/4c/74b26f5e52fe2139f2807ea445f0cf408ae3ca -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/64/9c3384cbb85c0614e33c3b934aaf1dc818a520 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/41/43c8e8c50012fbea1a960350e964236424b480 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/d7/a6b96dc817008c66bee1090842e8fe1081b6fe -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/0b/71a4de6a84e01b1c8e5579a972c92cea8d004d -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/62/6d793125c57d455648e5bfc3afe0cc3d79cecb -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/aa/9aa881c3de7fedc027729dd757efb0df5303b9 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/69/3fc5ee7580c808a4a802238c5dcb5ed13744cc -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/46/380163cda7c512d731ca038a8c34c05f0bd03b -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/28/658300addb4d2122c31af0d527d0ff9667e684 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/35/f9b490da1f7fc90c1ecf3ca2bb812cb4ddfa0c -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/f8/93b964255022cf98e576a48e48ea85c6e31851 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/6e/959654abfc13b30f57544f982fab010a08a135 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/fe/42f52a91b59189f20e36f35c2a831991dd83d3 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/bc/5effb80ba1f2bd69100930bdc2150ca46326cc -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/94/44f9b34e19e18be317d3b99093d29f6395e152 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/8f/a1aae39ed6cf808f8b3138ec2131df9e08de91 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/ae/b3440fb2188bf7712ed77b8863344aeadb7eb2 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/b7/c23e4800574470e1e8229ee88a5110817bc804 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/f5/09734cf8304036c3ec1874adc84c03268eb3b0 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/98/a2533ba31c84e9e7c8c4deec484316e55c0a30 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/d4/a08deec729ec4827b85833cdfb61af9cc005f5 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/37/451e7071a156bd618328fdd69b0f6d6e7f788b -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/0c/33eb47ef3d89fc8bbc500ec6f755f478feb20e -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/d4/29225123f7c4df40d8ce97fef64875b2b3a3d4 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/57/4bf9a3462725b7005dd9b3debc58a06d61cddf -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/fd/b34d61de904b4d9935c8fa2cecb5438574b3e7 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/fe/bb089ccf3996c3c6dcdca2650ea910d021bbfd -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/20/d94ab0ec886da8724d42a11cd2c81d4b97116a -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/f7/cac96ee2f3200e96fa5f4439309050d3fec162 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/f8/fff8882b8d7e500c923c736cfcd52669739468 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/58/8981ba07117c0df3b151b53f3acdb0339ab682 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/52/a88c68807775d909e899776a526c7fab027bd2 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/70/d072011508c8d492e0e014e6fbf5be22289558 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/04/ce324566a89cecd71437ef78e4a801fde5f499 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/76/db4476d2a1346de4fa1c6d9bb6888b211e41fa -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/60/79019a9ad6f313e2f1a75840e7eba4dafcf4d6 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/ec/aa0faf39cdda866c3c383bb5aa3a1717fabccf -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/dc/7cbf719b1fbfb5114450bb8f660831b2787728 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/b3/1f6146d29be70601db6d8700d92d45252f2116 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/aa/a750e4153ea92b189c1a15ca7ac4e64ec188fb -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/51/b5b21d40c50ec64d95ba318e4ca7646f5dc130 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/04/4a767bab20a95b17e9413534e892db5d744c51 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/98/ca37999131c5cddb62c35c95851d18089c70e9 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/b8/c17561a3da38e14b9f988ab60bc0129b31e3f7 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/bd/c8792b6c273825df268993d8436ab91c3c37d6 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/61/200ae57942e97b3c7c158148cfbeecdecd3e25 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/06/e56352ee5e8b6611fafcf625430c28b333a90f -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/8a/e5958bbc41b55cc766e0bfdccc5cdc62542a25 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/94/492b3b7ddaafc88251c695cca01753623e6307 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/10/e111cd43e6cb1a5faa3286d2724666a369b0b5 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/5f/e98636779fa5c6af9cf2cd7a8c331137c13978 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/96/4bd516ed1a89d1f25408c0c63bfb773381d79d -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/23/15f4ff48102ca3db8ad41bdd9a3ff53a0bac82 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/fa/aba48fdf2b30125f7ddc8d53ecb330c3c09380 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/b0/254f9b463d23028fe13176914abad7d59851b1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/32/eb0c32e1a35b997e90809582ff958f424927ee -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/8e/6f6ebf25c3cfba26890882f123c6d573f96ed0 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/1b/8c7b13078b9e2b9c4f8b78b99e0f2f773e60c4 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/db/50da3d4256847091b1e9639bde943facce1ec8 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/a0/dff030582cd7f2b9ef48cf045b8190b524ad50 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/c5/9890628d53978aafd56bb93ba9c8c9e13b58c3 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/6b/93058113cdfecf4d7d7717ad114b0c5eb9c071 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/55/a65d38d9bfd461a05f93e157b1fbed03783e80 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/1b/a3d791f35b5e58b6e5eea0620997d5b34981cf -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/31/25495596f542d844d3021a117f6da8dbfb7df1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/e6/99db749b1c895bd9b5b6f5e5470fa63553f03e -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/44/c924002ef62aae0e4c6341d6253f888b047b02 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/4e/c1fb41d824322674770e07e2f6789b6ae85b11 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/13/c266dc5fcb04389faa68c88bee73ab24253876 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/fa/2e3f6275587c32e51ebb2d28ad60e9f3ffad3b -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/cc/9063cd3ffaa1527d9e2ec9c2d9af4c55124108 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/1a/f9343228681637e56365bd822c73106f1c4dff -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/78/d6e9eab1e3dee4a3d3a0c0437c394b4260930a -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/04/92f17d176801756c66ccd7ae3ac41b8f9126f9 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/7f/3ca8445864c1fc95d24e70e89e0e492b4132e3 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/67/2cd47852635309d06f74af5eabf74bc9ec3278 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/59/1af545ef92cbb3fece4d3c29fefb0a00fe0f49 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/f7/7452c59d5b0e82de1b97755fbc8db458baadad -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/01/e71853bf591278ddc176cdbe18657ad0362d93 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/19/35fb7d38bcfe702d8e6759b8772fd395a2e335 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/86/05cdce2407631e850246bd1b3bddcb428fb20f -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/1e/78bbf530d14cd993ea3e10aec12b4efd3e8f88 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/74/3325be5234f27f5a5c4750f1db883da8d81de8 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/71/4d85689dcbe38ffc45a90937249401b3b32a62 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/4d/4b99d1641b17a0f575ae74b8f7cf9c00bdb85f -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/a0/32cf12ad63b0a901a3a3efd0933b34a8033636 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/fd/31dd3b0e04d4f5f3fa611c4dcd05964609be83 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/df/d7e4c3bddf13503fc24298241081476f98c761 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/0d/737d91c6fd6bd1f0eb1c1aca120393cc2f420b -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/a8/7d8f9fe09f91df770bdb290fde4f3f32be3be0 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/51/1b249b47fbabebfd389f204b2f16e4ce9f3c21 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/95/f16afbfcd57d0a7d10d91983f9fb408700cdb6 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/79/6622de21d0158ca1ac681bd359d0dffec0f7e8 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/77/8446baa200c8466648fb29177ab89a7481880e -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/73/b0ce29085cca62b0d85f5d426c960130ab0bf7 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/98/9d1654945e2d732af29b07ccd30ae45829fc7c -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/f0/8b5ad3de77ddcd8038c350548f4ed45ad01b87 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/f9/1b7a31a762e6ff8a94ad38c14ee9b308d6a705 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/d8/aa0c9b111e55652c41df7fa5f13f94198f602f -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/55/92c2920856c6b899f640dfa1b85153fc59d8f3 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/06/908a3e60698cefa05fdfa6ec2200981deaceca -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/8b/4010c66bb24f800b2ef8b2e678709602b558c1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/b8/c033b71f8cab469d3629e24e68cce5c9380965 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/86/9360824fbf4ff3aa01f6cf2373b6e1ed974487 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/44/4c5a94f070239f22b3a766d3795c4ca32939e1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/53/32a3281641a671919ba71ea83cc6856f14e6a6 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/6f/2b3806471b68a47db1208cc6b8c5dc37191df8 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/14/ddb22b2ce6523fc52bfb703357604991fff15b -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/69/e1efafe286c4375334c705edad531f41a7d4e4 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/48/6fc8e009bb9f93c4417aea8f027c8b27996fc3 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/50/e73fcc5410f828f174130bd0bfc3da87d1a107 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/f0/a602432fca4929a09265f724876864d39a8132 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/91/5becaaa30fc58db900011bafdc43d02f66b6ac -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/2b/252b8f9dbac2e9ca5ac30d43037c32cd118c80 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/6d/7d8d450fcfcd863616cbffd98f4074e55069c2 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/4e/a39ae8dec3960d174a64ea3c4084a6afa6dc74 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/97/55974491a79a74307c81dd52d2730a3d93e996 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/ca/da09f96d1b5768b91c47d08479c3e183d81f54 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/c9/a71d6f243c19dd1d4ac2f8eea9d72d4185a206 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/05/faf2b2dcf37aeb7c2d1e3eda51e6cc96dac4d7 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/4b/57edcb6a0a6431853515ac4509b7919e4c4809 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/pack/pack-d1adb00474cc615655698dfb33719bf9b678cabc.pack -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/9a/88dd005956929710dc07f068b00af42c07c454 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/6e/5242697d1e539521fed55d3b8b4b61ca633318 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/45/c6c78b5200c601ba7ea063f50ee5fb081d3e6a -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/7c/8ae8ad33787b8ead98f84558223d9531066839 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/objects/fc/88e6c4c99a5e12485c2ad4fa74eea70721b4b1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:28 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:29 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:30 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:31 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:32 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:33 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Created file -Event Path: /home/rushilwiz/.config/discord/Cache/index-dir/temp-index -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/Cache/index-dir/temp-index -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.config/discord/Cache/index-dir/temp-index -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Moved a file out -Event Path: /home/rushilwiz/.config/discord/Cache/index-dir/temp-index -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Moved a file in -Event Path: /home/rushilwiz/.config/discord/Cache/index-dir/the-real-index -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:34 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:35 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:36 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:37 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:38 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:39 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:40 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:41 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:42 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Created file -Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.By5SbJ -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.By5SbJ -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.By5SbJ -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.By5SbJ -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.By5SbJ -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Moved a file out -Event Path: /home/rushilwiz/.config/chromium/Default/.org.chromium.Chromium.By5SbJ -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Moved a file in -Event Path: /home/rushilwiz/.config/chromium/Default/TransportSecurity -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:43 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/Cookies-journal -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.config/discord/Cookies-journal -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:44 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:45 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Created file -Event Path: /home/rushilwiz/.cache/chromium/Default/Cache/e8eccbd61e6623c7_0 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/chromium/Default/Cache/e8eccbd61e6623c7_0 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/chromium/Default/Cache/e8eccbd61e6623c7_0 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:46 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:47 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:48 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:49 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:50 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:51 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/.java/.userPrefs/.user.lock.rushilwiz -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.java/.userPrefs/.user.lock.rushilwiz -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:52 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:53 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:54 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:55 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Created file -Event Path: /home/rushilwiz/lmao.txt -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/lmao.txt -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Wrote to a file -Event Path: /home/rushilwiz/lmao.txt -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/.Xauthority -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/kdeglobals -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/baloofilerc -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/kdeglobals -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/baloofilerc -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/.local/share/baloo/index-lock -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/.local/share/baloo/index -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:05:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/lmao.txt -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.local/share/baloo/index -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.local/share/baloo/index-lock -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/fileincludes/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/stubs/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/idindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/JetBrains/PyCharmCE2020.1/index/todoindex/.perFileVersion/indexed_versions/indexed_versions.next -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Deleted file -Event Path: /home/rushilwiz/lmao.txt -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:01 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/mesa_shader_cache/69/15e395112fe88f75cd39794d6db8f4f4bf831e -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/mesa_shader_cache/5e/a28a950821c3cf7a75411e87628a9eff559108 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/.config/chromium/Default/Cookies-journal -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/.config/chromium/Default -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/.config/chromium/Default -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.config/chromium/Default/Cookies-journal -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:05 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Created file -Event Path: /home/rushilwiz/.cache/chromium/Default/Cache/index-dir/temp-index -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/.cache/chromium/Default/Cache/index-dir/temp-index -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.cache/chromium/Default/Cache/index-dir/temp-index -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Moved a file out -Event Path: /home/rushilwiz/.cache/chromium/Default/Cache/index-dir/temp-index -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Moved a file in -Event Path: /home/rushilwiz/.cache/chromium/Default/Cache/index-dir/the-real-index -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:06:06 - -End time: Tuesday, June 16, 2020 21:06:06 - -Total work time: 00:00:43 - -109 suspicious commands found: -git migrate -git status -git add . -git commit -m "Creates Student/Teacher on User creation" -git pull -git push -git push -git push -git push -git push -git add . -git status -git commit -m "Basic interface created" -git pull -wget -P . https://github.com/shvchk/fallout-grub-theme/raw/master/install.sh -git status -git add . -git pull -git commit -m "Changed Teacher/Class models" -git pull -git pull -git status -nano .gitignore -git status -nano .gitignore -git status -git add . -git commit -m "Fixed some files that broke over merge" -git push -git status -git commit -m "Updated class model and created class detail view" -git add . -git commit -m "Updated class model and created class detail view" -git pull -git pull -git status -git commit -m "fixed student" -git add . -git commit -m "fixed student" -git push -git push -git status -git add . -git commit -m "Added profile view and class detail" -git pull -git pull -git status -git add requirements.txt -git commit -m "removed bad deps" -git pull -git push -git status -git add Website/skoolos/views.py -git commit -m "added teacher support" -git pull -git stash Website/api/models.py -git stash save Website/api/models.py -git pull -git push -git push -git push -git stash list -git stash apply -git stash apply -git stash apply -git pull -git status -git@gitlab.tjhsst.edu:understudyathon-2020/group-1/skoolos.git -git clone git@gitlab.tjhsst.edu:understudyathon-2020/group-1/skoolos.git -git pull -git status -git pull --rebase -git status -git status -git commit -m "chilled the dependencies" -git add . -git commit -m "chilled the dependencies" -git pull --rebase -git push -git status -git status -git add . -git commit -m "started ReadTheDocs" -git pull -git pull -git status -git push -git status -git commit -m "removed theme in conf" -git add . -git commit -m "removed theme in conf" -git pull -git push -git push -git remote -v -git git remote -v -git remote -v -git remote set-url origin https://github.com/rushilwiz/SkoolOS -git remote -v -git pull -git status -git add . -git commit -m "remade sphinx w/ source and build seperate -git pull -git push -git add . -git status -git commit -m "created initial files for docs -git pull - - --------------------------------------------------- - - -WARNING: One or more file did not have file extensions that are acceptable. -The paths to these files are listed below: - -/home/rushilwiz/ion -/home/rushilwiz/ctf -/home/rushilwiz/Music -/home/rushilwiz/Projects -/home/rushilwiz/Pictures -/home/rushilwiz/SkoolOS -/home/rushilwiz/Templates -/home/rushilwiz/id_gitlab.pub -/home/rushilwiz/Downloads -/home/rushilwiz/idafree-7.0 -/home/rushilwiz/Public -/home/rushilwiz/Documents -/home/rushilwiz/id_gitlab -/home/rushilwiz/VirtualBox VMs -/home/rushilwiz/crucialnet -/home/rushilwiz/webserver.pub -/home/rushilwiz/Desktop -/home/rushilwiz/webserver -/home/rushilwiz/Videos -/home/rushilwiz/brancher -/home/rushilwiz/ion/migrations -/home/rushilwiz/ion/Ion.egg-info -/home/rushilwiz/ion/setup.py -/home/rushilwiz/ion/SECURITY.md -/home/rushilwiz/ion/manage.py -/home/rushilwiz/ion/CONTRIBUTING.md -/home/rushilwiz/ion/docs -/home/rushilwiz/ion/Vagrantfile -/home/rushilwiz/ion/fabfile.py -/home/rushilwiz/ion/deploy -/home/rushilwiz/ion/intranet -/home/rushilwiz/ion/cron -/home/rushilwiz/ion/COPYING -/home/rushilwiz/ion/pyproject.toml -/home/rushilwiz/ion/scripts -/home/rushilwiz/ion/README.rst -/home/rushilwiz/ion/config -/home/rushilwiz/ion/migrations/__init__.py -/home/rushilwiz/ion/Ion.egg-info/PKG-INFO -/home/rushilwiz/ion/docs/setup -/home/rushilwiz/ion/docs/administration -/home/rushilwiz/ion/docs/_static -/home/rushilwiz/ion/docs/_ext -/home/rushilwiz/ion/docs/developing -/home/rushilwiz/ion/docs/architecture -/home/rushilwiz/ion/docs/_templates -/home/rushilwiz/ion/docs/sourcedoc -/home/rushilwiz/ion/docs/conf.py -/home/rushilwiz/ion/docs/index.rst -/home/rushilwiz/ion/docs/setup/vagrant.rst -/home/rushilwiz/ion/docs/setup/postinstall.rst -/home/rushilwiz/ion/docs/setup/server.rst -/home/rushilwiz/ion/docs/setup/index.rst -/home/rushilwiz/ion/docs/administration/index.rst -/home/rushilwiz/ion/docs/_static/custom.css -/home/rushilwiz/ion/docs/_ext/djangodocs.py -/home/rushilwiz/ion/docs/developing/eighth-models.rst -/home/rushilwiz/ion/docs/developing/howto.rst -/home/rushilwiz/ion/docs/developing/updates.rst -/home/rushilwiz/ion/docs/developing/oauth.rst -/home/rushilwiz/ion/docs/developing/styleguide.rst -/home/rushilwiz/ion/docs/developing/requirements.rst -/home/rushilwiz/ion/docs/developing/testing.rst -/home/rushilwiz/ion/docs/developing/index.rst -/home/rushilwiz/ion/docs/architecture/index.rst -/home/rushilwiz/ion/docs/_templates/relations.html -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.views.admin.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.views.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dashboard.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.preferences.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.welcome.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.lostfound.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.oauth.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.signage.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dataimport.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.schedule.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.features.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.itemreg.templatetags.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.polls.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.files.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.seniors.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.feedback.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.api.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.announcements.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.auth.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.seniors.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.emerg.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.forms.admin.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.signage.templatetags.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.sessionmgmt.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.schedule.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.bus.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.error.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.auth.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.seniors.rst -/home/rushilwiz/ion/docs/sourcedoc/modules.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.nomination.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.notifications.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.schedule.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.test.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.itemreg.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.emailfwd.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.groups.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.settings.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.events.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.search.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.forms.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.printing.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.middleware.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.templatetags.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.parking.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dataimport.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dataimport.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.templatetags.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.auth.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.utils.rst -/home/rushilwiz/ion/intranet/wsgi.py -/home/rushilwiz/ion/intranet/celery.py -/home/rushilwiz/ion/intranet/__init__.py -/home/rushilwiz/ion/intranet/settings -/home/rushilwiz/ion/intranet/routing.py -/home/rushilwiz/ion/intranet/utils -/home/rushilwiz/ion/intranet/middleware -/home/rushilwiz/ion/intranet/test -/home/rushilwiz/ion/intranet/apps -/home/rushilwiz/ion/intranet/static -/home/rushilwiz/ion/intranet/asgi.py -/home/rushilwiz/ion/intranet/urls.py -/home/rushilwiz/ion/intranet/templates -/home/rushilwiz/ion/intranet/settings/__init__.py -/home/rushilwiz/ion/intranet/settings/secret.sample -/home/rushilwiz/ion/intranet/settings/travis_secret.py -/home/rushilwiz/ion/intranet/utils/__init__.py -/home/rushilwiz/ion/intranet/utils/helpers.py -/home/rushilwiz/ion/intranet/utils/date.py -/home/rushilwiz/ion/intranet/utils/serialization.py -/home/rushilwiz/ion/intranet/utils/locking.py -/home/rushilwiz/ion/intranet/utils/admin_helpers.py -/home/rushilwiz/ion/intranet/utils/deletion.py -/home/rushilwiz/ion/intranet/utils/cache.py -/home/rushilwiz/ion/intranet/utils/html.py -/home/rushilwiz/ion/intranet/utils/session.py -/home/rushilwiz/ion/intranet/middleware/__init__.py -/home/rushilwiz/ion/intranet/middleware/session_management.py -/home/rushilwiz/ion/intranet/middleware/threadlocals.py -/home/rushilwiz/ion/intranet/middleware/monitoring.py -/home/rushilwiz/ion/intranet/middleware/dark_mode.py -/home/rushilwiz/ion/intranet/middleware/templates.py -/home/rushilwiz/ion/intranet/middleware/profiler.py -/home/rushilwiz/ion/intranet/middleware/traceback.py -/home/rushilwiz/ion/intranet/middleware/access_log.py -/home/rushilwiz/ion/intranet/middleware/url_slashes.py -/home/rushilwiz/ion/intranet/middleware/ajax.py -/home/rushilwiz/ion/intranet/middleware/same_origin.py -/home/rushilwiz/ion/intranet/test/__init__.py -/home/rushilwiz/ion/intranet/test/data -/home/rushilwiz/ion/intranet/test/ion_test.py -/home/rushilwiz/ion/intranet/test/stubs -/home/rushilwiz/ion/intranet/test/test_suite.py -/home/rushilwiz/ion/intranet/test/data/awilliam.json -/home/rushilwiz/ion/intranet/test/stubs/wsgiref -/home/rushilwiz/ion/intranet/test/stubs/requests_oauthlib.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3 -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider -/home/rushilwiz/ion/intranet/test/stubs/pip -/home/rushilwiz/ion/intranet/test/stubs/simple_history -/home/rushilwiz/ion/intranet/test/stubs/ldap_test.pyi -/home/rushilwiz/ion/intranet/test/stubs/dateutil -/home/rushilwiz/ion/intranet/test/stubs/cacheops.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric -/home/rushilwiz/ion/intranet/test/stubs/corsheaders -/home/rushilwiz/ion/intranet/test/stubs/formtools -/home/rushilwiz/ion/intranet/test/stubs/reportlab -/home/rushilwiz/ion/intranet/test/stubs/maintenancemode -/home/rushilwiz/ion/intranet/test/stubs/paramiko -/home/rushilwiz/ion/intranet/test/stubs/icalendar.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest -/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar -/home/rushilwiz/ion/intranet/test/stubs/django -/home/rushilwiz/ion/intranet/test/stubs/pexpect.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework -/home/rushilwiz/ion/intranet/test/stubs/raven -/home/rushilwiz/ion/intranet/test/stubs/pstats.pyi -/home/rushilwiz/ion/intranet/test/stubs/magic.pyi -/home/rushilwiz/ion/intranet/test/stubs/pysftp.pyi -/home/rushilwiz/ion/intranet/test/stubs/bleach -/home/rushilwiz/ion/intranet/test/stubs/Crypto -/home/rushilwiz/ion/intranet/test/stubs/cProfile.pyi -/home/rushilwiz/ion/intranet/test/stubs/gssapi.pyi -/home/rushilwiz/ion/intranet/test/stubs/setuptools -/home/rushilwiz/ion/intranet/test/stubs/wsgiref/util.pyi -/home/rushilwiz/ion/intranet/test/stubs/wsgiref/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils -/home/rushilwiz/ion/intranet/test/stubs/ldap3/protocol -/home/rushilwiz/ion/intranet/test/stubs/ldap3/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/core -/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils/conv.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils/dn.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/protocol/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/protocol/sasl.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/core/exceptions.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/core/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/settings.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/views -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/models.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/middleware.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/views/application.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/views/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/pip/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/pip/download.pyi -/home/rushilwiz/ion/intranet/test/stubs/pip/req -/home/rushilwiz/ion/intranet/test/stubs/pip/req/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/pip/req/req_file.pyi -/home/rushilwiz/ion/intranet/test/stubs/simple_history/admin.pyi -/home/rushilwiz/ion/intranet/test/stubs/simple_history/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/simple_history/models.pyi -/home/rushilwiz/ion/intranet/test/stubs/simple_history/middleware.pyi -/home/rushilwiz/ion/intranet/test/stubs/dateutil/relativedelta.pyi -/home/rushilwiz/ion/intranet/test/stubs/dateutil/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/contrib -/home/rushilwiz/ion/intranet/test/stubs/fabric/api.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/context_managers.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/operations.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/state.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/contrib/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/contrib/console.pyi -/home/rushilwiz/ion/intranet/test/stubs/corsheaders/defaults.pyi -/home/rushilwiz/ion/intranet/test/stubs/corsheaders/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/corsheaders/middleware.pyi -/home/rushilwiz/ion/intranet/test/stubs/formtools/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/formtools/wizard -/home/rushilwiz/ion/intranet/test/stubs/formtools/wizard/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/formtools/wizard/views.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/platypus.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib -/home/rushilwiz/ion/intranet/test/stubs/reportlab/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/units.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/enums.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/styles.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/pagesizes.pyi -/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/conf.pyi -/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/middleware.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_si.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/rsakey.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/config.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/proxy.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_handle.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/dsskey.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/ssh_exception.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_attr.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/server.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/transport.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/util.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/common.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/agent.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/file.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_client.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/client.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_file.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/pkey.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/hostkeys.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_server.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/message.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/channel.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/mock.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/util.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/runner.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/result.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/suite.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/signals.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/loader.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/case.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/main.pyi -/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar/settings.pyi -/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar/middleware.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib -/home/rushilwiz/ion/intranet/test/stubs/django/shortcuts.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/dispatch.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/template -/home/rushilwiz/ion/intranet/test/stubs/django/utils -/home/rushilwiz/ion/intranet/test/stubs/django/views -/home/rushilwiz/ion/intranet/test/stubs/django/urls -/home/rushilwiz/ion/intranet/test/stubs/django/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/test -/home/rushilwiz/ion/intranet/test/stubs/django/apps -/home/rushilwiz/ion/intranet/test/stubs/django/conf -/home/rushilwiz/ion/intranet/test/stubs/django/core -/home/rushilwiz/ion/intranet/test/stubs/django/forms -/home/rushilwiz/ion/intranet/test/stubs/django/http.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db -/home/rushilwiz/ion/intranet/test/stubs/django/templatetags -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/messages.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/admin -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/forms.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/hashers.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/models.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/decorators.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/admin/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/admin/site.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/template/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/template/loader.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/log.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/functional.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/tree.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/translation -/home/rushilwiz/ion/intranet/test/stubs/django/utils/safestring.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/formats.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/decorators.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/deprecation.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/encoding.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/text.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/http.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/html.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/timezone.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/translation/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators -/home/rushilwiz/ion/intranet/test/stubs/django/views/generic -/home/rushilwiz/ion/intranet/test/stubs/django/views/debug.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/csrf.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/debug.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/clickjacking.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/http.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/generic/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/generic/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/urls/exceptions.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/urls/resolvers.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/urls/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/urls/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/urls/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/test/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/test/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/apps/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/apps/apps.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/conf/settings.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/conf/urls.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/conf/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/serializers -/home/rushilwiz/ion/intranet/test/stubs/django/core/files -/home/rushilwiz/ion/intranet/test/stubs/django/core/exceptions.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/mail.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/management -/home/rushilwiz/ion/intranet/test/stubs/django/core/paginator.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/wsgi.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/signing.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/signals.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache -/home/rushilwiz/ion/intranet/test/stubs/django/core/handlers -/home/rushilwiz/ion/intranet/test/stubs/django/core/urlresolvers.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/validators.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/serializers/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/files/images.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/files/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/files/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/files/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/management/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/management/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends/dummy.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/handlers/wsgi.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/handlers/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/formsets.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/widgets.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/forms.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/boundfield.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/models.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/fields.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/migrations.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/backends -/home/rushilwiz/ion/intranet/test/stubs/django/db/models -/home/rushilwiz/ion/intranet/test/stubs/django/db/transaction.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/connections.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/backends/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/backends/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/lookups.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/expressions.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/aggregates.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/query_utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/manager.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/query.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/deletion.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/related_descriptors.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/reverse_related.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/files.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/related_lookups.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/related.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/templatetags/static.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/templatetags/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/response.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/permissions.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/serializers.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/exceptions.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/renderers.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/reverse.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/generics.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/status.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/decorators.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/views.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/authentication.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/pagination.pyi -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib -/home/rushilwiz/ion/intranet/test/stubs/raven/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/raven_compat -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/raven_compat/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/raven_compat/models.pyi -/home/rushilwiz/ion/intranet/test/stubs/bleach/sanitizer.pyi -/home/rushilwiz/ion/intranet/test/stubs/bleach/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/Crypto/Cipher.pyi -/home/rushilwiz/ion/intranet/test/stubs/Crypto/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/setuptools/__init__.pyi -/home/rushilwiz/ion/intranet/apps/error -/home/rushilwiz/ion/intranet/apps/search -/home/rushilwiz/ion/intranet/apps/__init__.py -/home/rushilwiz/ion/intranet/apps/api -/home/rushilwiz/ion/intranet/apps/notifications -/home/rushilwiz/ion/intranet/apps/auth -/home/rushilwiz/ion/intranet/apps/users -/home/rushilwiz/ion/intranet/apps/lostfound -/home/rushilwiz/ion/intranet/apps/events -/home/rushilwiz/ion/intranet/apps/eighth -/home/rushilwiz/ion/intranet/apps/files -/home/rushilwiz/ion/intranet/apps/itemreg -/home/rushilwiz/ion/intranet/apps/oauth -/home/rushilwiz/ion/intranet/apps/polls -/home/rushilwiz/ion/intranet/apps/seniors -/home/rushilwiz/ion/intranet/apps/context_processors.py -/home/rushilwiz/ion/intranet/apps/bus -/home/rushilwiz/ion/intranet/apps/signage -/home/rushilwiz/ion/intranet/apps/dataimport -/home/rushilwiz/ion/intranet/apps/schedule -/home/rushilwiz/ion/intranet/apps/welcome -/home/rushilwiz/ion/intranet/apps/nomination -/home/rushilwiz/ion/intranet/apps/groups -/home/rushilwiz/ion/intranet/apps/feedback -/home/rushilwiz/ion/intranet/apps/parking -/home/rushilwiz/ion/intranet/apps/dashboard -/home/rushilwiz/ion/intranet/apps/announcements -/home/rushilwiz/ion/intranet/apps/emerg -/home/rushilwiz/ion/intranet/apps/features -/home/rushilwiz/ion/intranet/apps/sessionmgmt -/home/rushilwiz/ion/intranet/apps/emailfwd -/home/rushilwiz/ion/intranet/apps/templatetags -/home/rushilwiz/ion/intranet/apps/preferences -/home/rushilwiz/ion/intranet/apps/printing -/home/rushilwiz/ion/intranet/apps/error/__init__.py -/home/rushilwiz/ion/intranet/apps/error/tests.py -/home/rushilwiz/ion/intranet/apps/error/views.py -/home/rushilwiz/ion/intranet/apps/search/__init__.py -/home/rushilwiz/ion/intranet/apps/search/views.py -/home/rushilwiz/ion/intranet/apps/search/utils.py -/home/rushilwiz/ion/intranet/apps/search/urls.py -/home/rushilwiz/ion/intranet/apps/api/__init__.py -/home/rushilwiz/ion/intranet/apps/api/tests.py -/home/rushilwiz/ion/intranet/apps/api/views.py -/home/rushilwiz/ion/intranet/apps/api/authentication.py -/home/rushilwiz/ion/intranet/apps/api/utils.py -/home/rushilwiz/ion/intranet/apps/api/urls.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations -/home/rushilwiz/ion/intranet/apps/notifications/__init__.py -/home/rushilwiz/ion/intranet/apps/notifications/tasks.py -/home/rushilwiz/ion/intranet/apps/notifications/models.py -/home/rushilwiz/ion/intranet/apps/notifications/views.py -/home/rushilwiz/ion/intranet/apps/notifications/urls.py -/home/rushilwiz/ion/intranet/apps/notifications/emails.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0002_auto_20150729_1734.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0003_gcmnotification.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0005_auto_20151221_2008.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0007_auto_20151221_2259.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0006_auto_20151221_2028.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0004_notificationconfig_android_gcm_optout.py -/home/rushilwiz/ion/intranet/apps/auth/__init__.py -/home/rushilwiz/ion/intranet/apps/auth/decorators.py -/home/rushilwiz/ion/intranet/apps/auth/tests.py -/home/rushilwiz/ion/intranet/apps/auth/apps.py -/home/rushilwiz/ion/intranet/apps/auth/backends.py -/home/rushilwiz/ion/intranet/apps/auth/helpers.py -/home/rushilwiz/ion/intranet/apps/auth/management -/home/rushilwiz/ion/intranet/apps/auth/views.py -/home/rushilwiz/ion/intranet/apps/auth/forms.py -/home/rushilwiz/ion/intranet/apps/auth/signals.py -/home/rushilwiz/ion/intranet/apps/auth/rest_permissions.py -/home/rushilwiz/ion/intranet/apps/auth/urls.py -/home/rushilwiz/ion/intranet/apps/auth/management/__init__.py -/home/rushilwiz/ion/intranet/apps/auth/management/commands -/home/rushilwiz/ion/intranet/apps/auth/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/auth/management/commands/grant_admin.py -/home/rushilwiz/ion/intranet/apps/users/migrations -/home/rushilwiz/ion/intranet/apps/users/__init__.py -/home/rushilwiz/ion/intranet/apps/users/serializers.py -/home/rushilwiz/ion/intranet/apps/users/tests.py -/home/rushilwiz/ion/intranet/apps/users/models.py -/home/rushilwiz/ion/intranet/apps/users/renderers.py -/home/rushilwiz/ion/intranet/apps/users/admin.py -/home/rushilwiz/ion/intranet/apps/users/management -/home/rushilwiz/ion/intranet/apps/users/views.py -/home/rushilwiz/ion/intranet/apps/users/forms.py -/home/rushilwiz/ion/intranet/apps/users/templatetags -/home/rushilwiz/ion/intranet/apps/users/urls.py -/home/rushilwiz/ion/intranet/apps/users/courses_urls.py -/home/rushilwiz/ion/intranet/apps/users/api.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0016_auto_20170802_1355.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0023_auto_20170806_2123.py -/home/rushilwiz/ion/intranet/apps/users/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0021_remove_user_grade_number.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0013_auto_20161016_1525.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0003_merge.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0019_auto_20170803_1342.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0006_user_seen_welcome.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0002_auto_20150404_1622.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0032_userdarkmodeproperties.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0018_user_title.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0002_auto_20150402_1847.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0007_user_receive_schedule_notifications.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0005_user_first_login.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0020_auto_20170803_1344.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0004_auto_20150717_0904.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0027_auto_20170824_1314.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0029_auto_20170825_1610.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0017_auto_20170802_1357.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0026_auto_20170824_1256.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0028_auto_20170824_1644.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0031_auto_20190715_1259.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0008_user__student_id.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0009_user_user_locked.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0010_auto_20161016_1343.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0025_auto_20170823_1354.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0015_auto_20170731_1057.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0030_merge_20171231_2209.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0015_user_bus_route.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0034_remove_userdarkmodeproperties__dark_mode_unlocked.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0011_auto_20161016_1503.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0014_auto_20161017_2114.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0033_user_last_global_logout_time.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0012_auto_20161016_1510.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0024_auto_20170817_1511.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0022_auto_20170805_1558.py -/home/rushilwiz/ion/intranet/apps/users/management/__init__.py -/home/rushilwiz/ion/intranet/apps/users/management/commands -/home/rushilwiz/ion/intranet/apps/users/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/users/management/commands/lock.py -/home/rushilwiz/ion/intranet/apps/users/management/commands/import_groups.py -/home/rushilwiz/ion/intranet/apps/users/templatetags/users.py -/home/rushilwiz/ion/intranet/apps/users/templatetags/__init__.py -/home/rushilwiz/ion/intranet/apps/users/templatetags/phone_numbers.py -/home/rushilwiz/ion/intranet/apps/users/templatetags/grades.py -/home/rushilwiz/ion/intranet/apps/lostfound/migrations -/home/rushilwiz/ion/intranet/apps/lostfound/__init__.py -/home/rushilwiz/ion/intranet/apps/lostfound/models.py -/home/rushilwiz/ion/intranet/apps/lostfound/apps.py -/home/rushilwiz/ion/intranet/apps/lostfound/admin.py -/home/rushilwiz/ion/intranet/apps/lostfound/views.py -/home/rushilwiz/ion/intranet/apps/lostfound/forms.py -/home/rushilwiz/ion/intranet/apps/lostfound/urls.py -/home/rushilwiz/ion/intranet/apps/lostfound/migrations/0002_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/lostfound/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/lostfound/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/events/migrations -/home/rushilwiz/ion/intranet/apps/events/__init__.py -/home/rushilwiz/ion/intranet/apps/events/tests.py -/home/rushilwiz/ion/intranet/apps/events/models.py -/home/rushilwiz/ion/intranet/apps/events/admin.py -/home/rushilwiz/ion/intranet/apps/events/views.py -/home/rushilwiz/ion/intranet/apps/events/forms.py -/home/rushilwiz/ion/intranet/apps/events/notifications.py -/home/rushilwiz/ion/intranet/apps/events/urls.py -/home/rushilwiz/ion/intranet/apps/events/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0011_auto_20150913_1427.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0017_auto_20160323_2305.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0002_auto_20150623_1452.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0024_auto_20170307_2037_squashed_0025_auto_20170307_2040.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0023_event_category.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0005_event_time.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0012_auto_20150913_1433.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0003_link_title.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0019_tjstaruuidmap.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0015_auto_20151130_1427.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0004_remove_event_time.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0009_auto_20150903_1138.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0022_event_public.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0006_auto_20150623_1615.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0021_auto_20161004_2034.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0025_event_open_to.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0014_event_show_attending.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0010_auto_20150911_2148.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0008_event_attending.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0007_auto_20150628_1227.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0016_auto_20160323_2118.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0013_auto_20150913_1433.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0018_event_show_on_dashboard.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0020_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0026_auto_20170307_2258.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations -/home/rushilwiz/ion/intranet/apps/eighth/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/serializers.py -/home/rushilwiz/ion/intranet/apps/eighth/tests.py -/home/rushilwiz/ion/intranet/apps/eighth/tasks.py -/home/rushilwiz/ion/intranet/apps/eighth/models.py -/home/rushilwiz/ion/intranet/apps/eighth/admin.py -/home/rushilwiz/ion/intranet/apps/eighth/views -/home/rushilwiz/ion/intranet/apps/eighth/context_processors.py -/home/rushilwiz/ion/intranet/apps/eighth/management -/home/rushilwiz/ion/intranet/apps/eighth/forms -/home/rushilwiz/ion/intranet/apps/eighth/exceptions.py -/home/rushilwiz/ion/intranet/apps/eighth/utils.py -/home/rushilwiz/ion/intranet/apps/eighth/notifications.py -/home/rushilwiz/ion/intranet/apps/eighth/urls.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0046_auto_20161004_2140.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0030_remove_eighthactivity_aid.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0058_auto_20171117_1724.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0005_auto_20150318_1243.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0051_auto_20170203_1310.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0059_auto_20180726_1739.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0029_auto_20150829_2335.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0011_eighthsignup_absence_acknowledged.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0052_auto_20170329_1258.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0006_auto_20150318_1246.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0040_auto_20160515_1851.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0048_auto_20161006_2137.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0028_historicaleighthactivity.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0023_auto_20150530_0026.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0035_eighthactivity_blacklist.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0016_auto_20150526_0930.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0043_auto_20160926_2206.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0003_auto_20150317_0947.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0049_auto_20170106_1007.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0039_auto_20160322_1013.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0038_merge.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0010_eighthscheduledactivity_admin_comments.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0007_auto_20150318_1249.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0055_auto_20171003_2201.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0009_eighthactivity_favorites.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0022_schedactivity_comments_to_title.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0033_eighthactivity_default_capacity.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0054_auto_20170706_1043.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0042_auto_20160829_1242.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0013_auto_20150523_1233.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0020_eighthblock_override_blocks.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0061_auto_20191215_2222.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0034_eighthscheduledactivity_special.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0037_auto_20160307_2342.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0004_auto_20150317_1003.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0025_eighthblock_time.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0050_eighthwaitlist_block.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0041_auto_20160828_2052.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0014_eighthsponsor_show_full_name.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0036_eighthscheduledactivity_administrative.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0057_auto_20171005_2135.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0015_auto_20150523_1300.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0026_auto_20150714_0914.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0029_auto_20150724_1530.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0031_eighthsignup_absence_emailed.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0045_auto_20161004_2135.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0053_auto_20170518_1458.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0024_eighthactivity_aid.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0019_auto_20150528_0015.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0027_eighthblock_comments.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0060_auto_20180726_1815.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0062_auto_20200116_1926.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0047_auto_20161005_0655.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0036_merge.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0002_auto_20150317_0934.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0056_eighthactivitysimilarity_true_count.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0018_auto_20150527_2333.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0044_auto_20161004_2034.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0032_auto_20151118_0106.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0012_eighthactivity_administrative.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0017_auto_20150526_0933.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0008_auto_20150318_1305.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0021_auto_20150529_2219.py -/home/rushilwiz/ion/intranet/apps/eighth/views/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/views/routers.py -/home/rushilwiz/ion/intranet/apps/eighth/views/signup.py -/home/rushilwiz/ion/intranet/apps/eighth/views/profile.py -/home/rushilwiz/ion/intranet/apps/eighth/views/activities.py -/home/rushilwiz/ion/intranet/apps/eighth/views/monitoring.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin -/home/rushilwiz/ion/intranet/apps/eighth/views/attendance.py -/home/rushilwiz/ion/intranet/apps/eighth/views/api.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/users.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/maintenance.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/groups.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/sponsors.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/activities.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/general.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/blocks.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/rooms.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/attendance.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/scheduling.py -/home/rushilwiz/ion/intranet/apps/eighth/management/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/delete_duplicate_signups.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/generate_similarities.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/signup_status_email.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/find_duplicates.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/absence_email.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/remove_withdrawn_students.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/generate_statistics.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/dev_create_blocks.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/update_counselors.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/groups.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/sponsors.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/activities.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/general.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/blocks.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/rooms.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/scheduling.py -/home/rushilwiz/ion/intranet/apps/files/migrations -/home/rushilwiz/ion/intranet/apps/files/__init__.py -/home/rushilwiz/ion/intranet/apps/files/tests.py -/home/rushilwiz/ion/intranet/apps/files/models.py -/home/rushilwiz/ion/intranet/apps/files/views.py -/home/rushilwiz/ion/intranet/apps/files/forms.py -/home/rushilwiz/ion/intranet/apps/files/urls.py -/home/rushilwiz/ion/intranet/apps/files/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/files/migrations/0004_host_visible_to_all.py -/home/rushilwiz/ion/intranet/apps/files/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/files/migrations/0002_auto_20150808_2134.py -/home/rushilwiz/ion/intranet/apps/files/migrations/0005_auto_20151109_2139.py -/home/rushilwiz/ion/intranet/apps/files/migrations/0003_auto_20150809_0057.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations -/home/rushilwiz/ion/intranet/apps/itemreg/__init__.py -/home/rushilwiz/ion/intranet/apps/itemreg/models.py -/home/rushilwiz/ion/intranet/apps/itemreg/apps.py -/home/rushilwiz/ion/intranet/apps/itemreg/admin.py -/home/rushilwiz/ion/intranet/apps/itemreg/views.py -/home/rushilwiz/ion/intranet/apps/itemreg/forms.py -/home/rushilwiz/ion/intranet/apps/itemreg/templatetags -/home/rushilwiz/ion/intranet/apps/itemreg/urls.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0005_auto_20160410_2146.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0007_auto_20160413_1929.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0004_auto_20160410_2144.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0003_auto_20160409_2240.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0008_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0009_auto_20180524_2221.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0006_auto_20160410_2215.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0002_auto_20160409_2157.py -/home/rushilwiz/ion/intranet/apps/itemreg/templatetags/__init__.py -/home/rushilwiz/ion/intranet/apps/itemreg/templatetags/texthighlight.py -/home/rushilwiz/ion/intranet/apps/oauth/migrations -/home/rushilwiz/ion/intranet/apps/oauth/__init__.py -/home/rushilwiz/ion/intranet/apps/oauth/tests.py -/home/rushilwiz/ion/intranet/apps/oauth/models.py -/home/rushilwiz/ion/intranet/apps/oauth/apps.py -/home/rushilwiz/ion/intranet/apps/oauth/admin.py -/home/rushilwiz/ion/intranet/apps/oauth/views.py -/home/rushilwiz/ion/intranet/apps/oauth/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/polls/migrations -/home/rushilwiz/ion/intranet/apps/polls/__init__.py -/home/rushilwiz/ion/intranet/apps/polls/tests.py -/home/rushilwiz/ion/intranet/apps/polls/models.py -/home/rushilwiz/ion/intranet/apps/polls/admin.py -/home/rushilwiz/ion/intranet/apps/polls/views.py -/home/rushilwiz/ion/intranet/apps/polls/forms.py -/home/rushilwiz/ion/intranet/apps/polls/urls.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0009_auto_20170425_1730.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0002_auto_20151117_1855.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0006_auto_20160112_0101.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0005_question_max_choices.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0004_answer_answer.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0007_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0010_poll_is_secret.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0003_auto_20151117_2139.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0008_auto_20161212_2355.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations -/home/rushilwiz/ion/intranet/apps/seniors/__init__.py -/home/rushilwiz/ion/intranet/apps/seniors/models.py -/home/rushilwiz/ion/intranet/apps/seniors/admin.py -/home/rushilwiz/ion/intranet/apps/seniors/management -/home/rushilwiz/ion/intranet/apps/seniors/views.py -/home/rushilwiz/ion/intranet/apps/seniors/forms.py -/home/rushilwiz/ion/intranet/apps/seniors/urls.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0007_auto_20151215_2341.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0002_auto_20151130_1459.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0006_auto_20151130_1640.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0005_auto_20151130_1637.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0004_auto_20151130_1634.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0003_auto_20151130_1504.py -/home/rushilwiz/ion/intranet/apps/seniors/management/__init__.py -/home/rushilwiz/ion/intranet/apps/seniors/management/commands -/home/rushilwiz/ion/intranet/apps/seniors/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/seniors/management/commands/import_colleges.py -/home/rushilwiz/ion/intranet/apps/bus/migrations -/home/rushilwiz/ion/intranet/apps/bus/__init__.py -/home/rushilwiz/ion/intranet/apps/bus/serializers.py -/home/rushilwiz/ion/intranet/apps/bus/tests.py -/home/rushilwiz/ion/intranet/apps/bus/tasks.py -/home/rushilwiz/ion/intranet/apps/bus/models.py -/home/rushilwiz/ion/intranet/apps/bus/admin.py -/home/rushilwiz/ion/intranet/apps/bus/management -/home/rushilwiz/ion/intranet/apps/bus/views.py -/home/rushilwiz/ion/intranet/apps/bus/consumers.py -/home/rushilwiz/ion/intranet/apps/bus/urls.py -/home/rushilwiz/ion/intranet/apps/bus/api.py -/home/rushilwiz/ion/intranet/apps/bus/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/bus/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/bus/migrations/0002_auto_20170606_1038.py -/home/rushilwiz/ion/intranet/apps/bus/migrations/0004_auto_20180117_1232.py -/home/rushilwiz/ion/intranet/apps/bus/migrations/0003_route_space.py -/home/rushilwiz/ion/intranet/apps/bus/management/commands -/home/rushilwiz/ion/intranet/apps/bus/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/bus/management/commands/import_routes.py -/home/rushilwiz/ion/intranet/apps/bus/management/commands/reset_routes.py -/home/rushilwiz/ion/intranet/apps/signage/migrations -/home/rushilwiz/ion/intranet/apps/signage/__init__.py -/home/rushilwiz/ion/intranet/apps/signage/models.py -/home/rushilwiz/ion/intranet/apps/signage/admin.py -/home/rushilwiz/ion/intranet/apps/signage/views.py -/home/rushilwiz/ion/intranet/apps/signage/pages.py -/home/rushilwiz/ion/intranet/apps/signage/consumers.py -/home/rushilwiz/ion/intranet/apps/signage/templatetags -/home/rushilwiz/ion/intranet/apps/signage/urls.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0017_sign_latest_heartbeat_time.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0007_sign_landscape.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0004_auto_20160212_1121.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0002_auto_20151230_2151.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0013_auto_20180329_1438.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0008_sign_map_location.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0006_sign_zoom.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0009_auto_20180327_1210.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0003_sign_use_frameset.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0005_auto_20160303_1409.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0015_auto_20180422_1714.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0010_auto_20180327_1233.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0016_auto_20191210_1520.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0011_page_sandbox.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0014_page_strip_links.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0012_auto_20180327_1459.py -/home/rushilwiz/ion/intranet/apps/signage/templatetags/__init__.py -/home/rushilwiz/ion/intranet/apps/signage/templatetags/signage.py -/home/rushilwiz/ion/intranet/apps/dataimport/migrations -/home/rushilwiz/ion/intranet/apps/dataimport/__init__.py -/home/rushilwiz/ion/intranet/apps/dataimport/tests.py -/home/rushilwiz/ion/intranet/apps/dataimport/apps.py -/home/rushilwiz/ion/intranet/apps/dataimport/management -/home/rushilwiz/ion/intranet/apps/dataimport/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/__init__.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/import_eighth.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/year_cleanup.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/import_photos.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/import_users.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations -/home/rushilwiz/ion/intranet/apps/schedule/__init__.py -/home/rushilwiz/ion/intranet/apps/schedule/serializers.py -/home/rushilwiz/ion/intranet/apps/schedule/tests.py -/home/rushilwiz/ion/intranet/apps/schedule/models.py -/home/rushilwiz/ion/intranet/apps/schedule/admin.py -/home/rushilwiz/ion/intranet/apps/schedule/management -/home/rushilwiz/ion/intranet/apps/schedule/views.py -/home/rushilwiz/ion/intranet/apps/schedule/forms.py -/home/rushilwiz/ion/intranet/apps/schedule/notifications.py -/home/rushilwiz/ion/intranet/apps/schedule/urls.py -/home/rushilwiz/ion/intranet/apps/schedule/api.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0006_auto_20150606_2350.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0005_auto_20150606_2122.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0007_auto_20150606_2351.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0002_auto_20150606_2057.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0008_block_order.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0011_day_comment.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0003_auto_20150606_2100.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0009_auto_20150717_0904.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0004_auto_20150606_2116.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0010_auto_20150806_1547.py -/home/rushilwiz/ion/intranet/apps/schedule/management/__init__.py -/home/rushilwiz/ion/intranet/apps/schedule/management/commands -/home/rushilwiz/ion/intranet/apps/schedule/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/schedule/management/commands/schedule_notify.py -/home/rushilwiz/ion/intranet/apps/welcome/migrations -/home/rushilwiz/ion/intranet/apps/welcome/__init__.py -/home/rushilwiz/ion/intranet/apps/welcome/tests.py -/home/rushilwiz/ion/intranet/apps/welcome/views.py -/home/rushilwiz/ion/intranet/apps/welcome/urls.py -/home/rushilwiz/ion/intranet/apps/welcome/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/nomination/migrations -/home/rushilwiz/ion/intranet/apps/nomination/__init__.py -/home/rushilwiz/ion/intranet/apps/nomination/tests.py -/home/rushilwiz/ion/intranet/apps/nomination/models.py -/home/rushilwiz/ion/intranet/apps/nomination/apps.py -/home/rushilwiz/ion/intranet/apps/nomination/views.py -/home/rushilwiz/ion/intranet/apps/nomination/urls.py -/home/rushilwiz/ion/intranet/apps/nomination/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/nomination/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/nomination/migrations/0002_auto_20160929_2156.py -/home/rushilwiz/ion/intranet/apps/groups/migrations -/home/rushilwiz/ion/intranet/apps/groups/__init__.py -/home/rushilwiz/ion/intranet/apps/groups/tests.py -/home/rushilwiz/ion/intranet/apps/groups/models.py -/home/rushilwiz/ion/intranet/apps/groups/views.py -/home/rushilwiz/ion/intranet/apps/groups/forms.py -/home/rushilwiz/ion/intranet/apps/groups/urls.py -/home/rushilwiz/ion/intranet/apps/groups/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/groups/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/feedback/migrations -/home/rushilwiz/ion/intranet/apps/feedback/__init__.py -/home/rushilwiz/ion/intranet/apps/feedback/tests.py -/home/rushilwiz/ion/intranet/apps/feedback/models.py -/home/rushilwiz/ion/intranet/apps/feedback/admin.py -/home/rushilwiz/ion/intranet/apps/feedback/views.py -/home/rushilwiz/ion/intranet/apps/feedback/forms.py -/home/rushilwiz/ion/intranet/apps/feedback/urls.py -/home/rushilwiz/ion/intranet/apps/feedback/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/feedback/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/feedback/migrations/0002_auto_20151207_1933.py -/home/rushilwiz/ion/intranet/apps/feedback/migrations/0003_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/parking/migrations -/home/rushilwiz/ion/intranet/apps/parking/__init__.py -/home/rushilwiz/ion/intranet/apps/parking/tests.py -/home/rushilwiz/ion/intranet/apps/parking/models.py -/home/rushilwiz/ion/intranet/apps/parking/apps.py -/home/rushilwiz/ion/intranet/apps/parking/admin.py -/home/rushilwiz/ion/intranet/apps/parking/views.py -/home/rushilwiz/ion/intranet/apps/parking/forms.py -/home/rushilwiz/ion/intranet/apps/parking/urls.py -/home/rushilwiz/ion/intranet/apps/parking/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/parking/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/parking/migrations/0002_carapplication_user.py -/home/rushilwiz/ion/intranet/apps/parking/migrations/0003_auto_20160606_1448.py -/home/rushilwiz/ion/intranet/apps/dashboard/__init__.py -/home/rushilwiz/ion/intranet/apps/dashboard/views.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations -/home/rushilwiz/ion/intranet/apps/announcements/__init__.py -/home/rushilwiz/ion/intranet/apps/announcements/serializers.py -/home/rushilwiz/ion/intranet/apps/announcements/tests.py -/home/rushilwiz/ion/intranet/apps/announcements/models.py -/home/rushilwiz/ion/intranet/apps/announcements/admin.py -/home/rushilwiz/ion/intranet/apps/announcements/views.py -/home/rushilwiz/ion/intranet/apps/announcements/forms.py -/home/rushilwiz/ion/intranet/apps/announcements/notifications.py -/home/rushilwiz/ion/intranet/apps/announcements/urls.py -/home/rushilwiz/ion/intranet/apps/announcements/api.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0014_auto_20150723_0914.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0022_auto_20151118_1037.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0024_auto_20161004_2034.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0017_auto_20150723_1058.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0019_auto_20150806_0849.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0003_announcement_user.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0015_auto_20150723_0922.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0012_auto_20150713_1348.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0005_auto_20150515_1353.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0023_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0016_auto_20150723_1052.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0020_auto_20150806_1547.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0010_auto_20150629_1351.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0021_announcement_notify_email_all.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0008_auto_20150603_1401.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0018_announcement_notify_post.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0011_auto_20150713_1314.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0013_announcementrequest_admin_email_sent.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0006_merge.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0002_announcement_groups.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0009_announcement_expiration_date.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0005_auto_20150515_1355.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0004_auto_20150512_2010.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0007_announcementrequest.py -/home/rushilwiz/ion/intranet/apps/emerg/migrations -/home/rushilwiz/ion/intranet/apps/emerg/__init__.py -/home/rushilwiz/ion/intranet/apps/emerg/tasks.py -/home/rushilwiz/ion/intranet/apps/emerg/views.py -/home/rushilwiz/ion/intranet/apps/emerg/api.py -/home/rushilwiz/ion/intranet/apps/emerg/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/features/migrations -/home/rushilwiz/ion/intranet/apps/features/__init__.py -/home/rushilwiz/ion/intranet/apps/features/tests.py -/home/rushilwiz/ion/intranet/apps/features/models.py -/home/rushilwiz/ion/intranet/apps/features/admin.py -/home/rushilwiz/ion/intranet/apps/features/helpers.py -/home/rushilwiz/ion/intranet/apps/features/context_processors.py -/home/rushilwiz/ion/intranet/apps/features/views.py -/home/rushilwiz/ion/intranet/apps/features/urls.py -/home/rushilwiz/ion/intranet/apps/features/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/features/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/features/migrations/0002_auto_20191117_1403.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations -/home/rushilwiz/ion/intranet/apps/sessionmgmt/__init__.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/tests.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/models.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/admin.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/helpers.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/views.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/urls.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0003_auto_20191012_1947.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0002_auto_20191012_1942.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0004_auto_20191013_2230.py -/home/rushilwiz/ion/intranet/apps/emailfwd/migrations -/home/rushilwiz/ion/intranet/apps/emailfwd/__init__.py -/home/rushilwiz/ion/intranet/apps/emailfwd/tests.py -/home/rushilwiz/ion/intranet/apps/emailfwd/models.py -/home/rushilwiz/ion/intranet/apps/emailfwd/apps.py -/home/rushilwiz/ion/intranet/apps/emailfwd/views.py -/home/rushilwiz/ion/intranet/apps/emailfwd/forms.py -/home/rushilwiz/ion/intranet/apps/emailfwd/urls.py -/home/rushilwiz/ion/intranet/apps/emailfwd/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/emailfwd/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/templatetags/__init__.py -/home/rushilwiz/ion/intranet/apps/templatetags/math.py -/home/rushilwiz/ion/intranet/apps/templatetags/tests.py -/home/rushilwiz/ion/intranet/apps/templatetags/dates.py -/home/rushilwiz/ion/intranet/apps/templatetags/form_field.py -/home/rushilwiz/ion/intranet/apps/templatetags/dictionaries.py -/home/rushilwiz/ion/intranet/apps/templatetags/forms.py -/home/rushilwiz/ion/intranet/apps/templatetags/newtab_links.py -/home/rushilwiz/ion/intranet/apps/templatetags/strings.py -/home/rushilwiz/ion/intranet/apps/preferences/migrations -/home/rushilwiz/ion/intranet/apps/preferences/__init__.py -/home/rushilwiz/ion/intranet/apps/preferences/tests.py -/home/rushilwiz/ion/intranet/apps/preferences/views.py -/home/rushilwiz/ion/intranet/apps/preferences/fields.py -/home/rushilwiz/ion/intranet/apps/preferences/forms.py -/home/rushilwiz/ion/intranet/apps/preferences/urls.py -/home/rushilwiz/ion/intranet/apps/preferences/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/printing/migrations -/home/rushilwiz/ion/intranet/apps/printing/__init__.py -/home/rushilwiz/ion/intranet/apps/printing/tests.py -/home/rushilwiz/ion/intranet/apps/printing/models.py -/home/rushilwiz/ion/intranet/apps/printing/admin.py -/home/rushilwiz/ion/intranet/apps/printing/views.py -/home/rushilwiz/ion/intranet/apps/printing/forms.py -/home/rushilwiz/ion/intranet/apps/printing/magic_files -/home/rushilwiz/ion/intranet/apps/printing/urls.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0006_printjob_page_range.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0007_printjob_duplex.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0004_auto_20151218_1346.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0008_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0009_printjob_fit.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0003_printjob_num_pages.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0005_auto_20160330_1554.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0002_printjob_printed.py -/home/rushilwiz/ion/intranet/apps/printing/magic_files/msooxml -/home/rushilwiz/ion/intranet/apps/printing/magic_files/COPYING -/home/rushilwiz/ion/intranet/static/manifest.json -/home/rushilwiz/ion/intranet/static/themes -/home/rushilwiz/ion/intranet/static/img -/home/rushilwiz/ion/intranet/static/js -/home/rushilwiz/ion/intranet/static/serviceworker.js -/home/rushilwiz/ion/intranet/static/signage -/home/rushilwiz/ion/intranet/static/svg -/home/rushilwiz/ion/intranet/static/css -/home/rushilwiz/ion/intranet/static/vendor -/home/rushilwiz/ion/intranet/static/themes/snow -/home/rushilwiz/ion/intranet/static/themes/halloween -/home/rushilwiz/ion/intranet/static/themes/piday -/home/rushilwiz/ion/intranet/static/themes/snow/snow.js -/home/rushilwiz/ion/intranet/static/themes/snow/snow.css -/home/rushilwiz/ion/intranet/static/themes/halloween/halloween.css -/home/rushilwiz/ion/intranet/static/themes/halloween/halloween.js -/home/rushilwiz/ion/intranet/static/themes/piday/piday.css -/home/rushilwiz/ion/intranet/static/themes/piday/piday.js -/home/rushilwiz/ion/intranet/static/img/promo -/home/rushilwiz/ion/intranet/static/img/patterns -/home/rushilwiz/ion/intranet/static/img/accounts -/home/rushilwiz/ion/intranet/static/img/logos -/home/rushilwiz/ion/intranet/static/img/promo/old -/home/rushilwiz/ion/intranet/static/img/promo/originals -/home/rushilwiz/ion/intranet/static/img/promo/old/original -/home/rushilwiz/ion/intranet/static/img/patterns/dark -/home/rushilwiz/ion/intranet/static/img/logos/touch -/home/rushilwiz/ion/intranet/static/js/responsive.core.js -/home/rushilwiz/ion/intranet/static/js/mailforwarding.js -/home/rushilwiz/ion/intranet/static/js/welcome.js -/home/rushilwiz/ion/intranet/static/js/announcement.form.js -/home/rushilwiz/ion/intranet/static/js/eighth -/home/rushilwiz/ion/intranet/static/js/common.header.js -/home/rushilwiz/ion/intranet/static/js/hoco_scores.js -/home/rushilwiz/ion/intranet/static/js/schedule.js -/home/rushilwiz/ion/intranet/static/js/common.js -/home/rushilwiz/ion/intranet/static/js/bus.js -/home/rushilwiz/ion/intranet/static/js/features.js -/home/rushilwiz/ion/intranet/static/js/files.js -/home/rushilwiz/ion/intranet/static/js/pages -/home/rushilwiz/ion/intranet/static/js/polls.js -/home/rushilwiz/ion/intranet/static/js/busdriver.js -/home/rushilwiz/ion/intranet/static/js/login.js -/home/rushilwiz/ion/intranet/static/js/hoco_ribbon.js -/home/rushilwiz/ion/intranet/static/js/signage.js -/home/rushilwiz/ion/intranet/static/js/dashboard -/home/rushilwiz/ion/intranet/static/js/vendor -/home/rushilwiz/ion/intranet/static/js/about.js -/home/rushilwiz/ion/intranet/static/js/common.nav.js -/home/rushilwiz/ion/intranet/static/js/eighth/waitlist.toggle.js -/home/rushilwiz/ion/intranet/static/js/eighth/user_link.js -/home/rushilwiz/ion/intranet/static/js/eighth/groups.js -/home/rushilwiz/ion/intranet/static/js/eighth/ui_init.js -/home/rushilwiz/ion/intranet/static/js/eighth/responsive.js -/home/rushilwiz/ion/intranet/static/js/eighth/attendance.js -/home/rushilwiz/ion/intranet/static/js/eighth/signup.js -/home/rushilwiz/ion/intranet/static/js/eighth/schedule.js -/home/rushilwiz/ion/intranet/static/js/eighth/signupUI.js -/home/rushilwiz/ion/intranet/static/js/eighth/statistics.js -/home/rushilwiz/ion/intranet/static/js/eighth/admin.js -/home/rushilwiz/ion/intranet/static/js/eighth/distribute_group.js -/home/rushilwiz/ion/intranet/static/js/eighth/signup.search.js -/home/rushilwiz/ion/intranet/static/js/pages/bus.js -/home/rushilwiz/ion/intranet/static/js/dashboard/events.js -/home/rushilwiz/ion/intranet/static/js/dashboard/common.js -/home/rushilwiz/ion/intranet/static/js/dashboard/seniors.js -/home/rushilwiz/ion/intranet/static/js/dashboard/eighth-widget.js -/home/rushilwiz/ion/intranet/static/js/dashboard/announcements.js -/home/rushilwiz/ion/intranet/static/js/vendor/PIE -/home/rushilwiz/ion/intranet/static/js/vendor/reconnecting-websocket.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/spin.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/backbone-min.map -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.are-you-sure.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery-1.10.2.min.map -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.stickytableheaders.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/Chart.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/underscore-min.map -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.overscroll.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/underscore-min.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.scrollto.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.cookie.js -/home/rushilwiz/ion/intranet/static/js/vendor/backbone-min.js -/home/rushilwiz/ion/intranet/static/js/vendor/moment.js -/home/rushilwiz/ion/intranet/static/js/vendor/sha256.js -/home/rushilwiz/ion/intranet/static/js/vendor/svg.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery-1.10.2.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/chrono.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.formset.js -/home/rushilwiz/ion/intranet/static/js/vendor/json2.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.timeago.js -/home/rushilwiz/ion/intranet/static/js/vendor/modernizr.js -/home/rushilwiz/ion/intranet/static/js/vendor/PIE/PIE.js -/home/rushilwiz/ion/intranet/static/js/vendor/PIE/PIE.htc -/home/rushilwiz/ion/intranet/static/signage/serviceworker.js -/home/rushilwiz/ion/intranet/static/css/api.scss -/home/rushilwiz/ion/intranet/static/css/search.scss -/home/rushilwiz/ion/intranet/static/css/events.scss -/home/rushilwiz/ion/intranet/static/css/mobile.scss -/home/rushilwiz/ion/intranet/static/css/schedule.scss -/home/rushilwiz/ion/intranet/static/css/eighth.maintenance.scss -/home/rushilwiz/ion/intranet/static/css/hoco_scores.scss -/home/rushilwiz/ion/intranet/static/css/files.scss -/home/rushilwiz/ion/intranet/static/css/eighth.common.scss -/home/rushilwiz/ion/intranet/static/css/dashboard.widgets.scss -/home/rushilwiz/ion/intranet/static/css/bus.scss -/home/rushilwiz/ion/intranet/static/css/eighth.signup.scss -/home/rushilwiz/ion/intranet/static/css/_reset.scss -/home/rushilwiz/ion/intranet/static/css/oauth.scss -/home/rushilwiz/ion/intranet/static/css/theme.blue.scss -/home/rushilwiz/ion/intranet/static/css/responsive.scss -/home/rushilwiz/ion/intranet/static/css/_colors.scss -/home/rushilwiz/ion/intranet/static/css/groups.scss -/home/rushilwiz/ion/intranet/static/css/emerg.scss -/home/rushilwiz/ion/intranet/static/css/announcements.form.scss -/home/rushilwiz/ion/intranet/static/css/profile.scss -/home/rushilwiz/ion/intranet/static/css/eighth.admin.scss -/home/rushilwiz/ion/intranet/static/css/about.scss -/home/rushilwiz/ion/intranet/static/css/lostfound.scss -/home/rushilwiz/ion/intranet/static/css/welcome.scss -/home/rushilwiz/ion/intranet/static/css/sessionmgmt.scss -/home/rushilwiz/ion/intranet/static/css/schedule.widget.scss -/home/rushilwiz/ion/intranet/static/css/dark -/home/rushilwiz/ion/intranet/static/css/polls.form.scss -/home/rushilwiz/ion/intranet/static/css/dashboard.scss -/home/rushilwiz/ion/intranet/static/css/page_base.scss -/home/rushilwiz/ion/intranet/static/css/hoco_ribbon.scss -/home/rushilwiz/ion/intranet/static/css/login.scss -/home/rushilwiz/ion/intranet/static/css/themes.scss -/home/rushilwiz/ion/intranet/static/css/responsive.core.scss -/home/rushilwiz/ion/intranet/static/css/eighth.schedule.scss -/home/rushilwiz/ion/intranet/static/css/signage.base.scss -/home/rushilwiz/ion/intranet/static/css/polls.scss -/home/rushilwiz/ion/intranet/static/css/eighth.profile.scss -/home/rushilwiz/ion/intranet/static/css/signage.page.scss -/home/rushilwiz/ion/intranet/static/css/base.scss -/home/rushilwiz/ion/intranet/static/css/courses.scss -/home/rushilwiz/ion/intranet/static/css/preferences.scss -/home/rushilwiz/ion/intranet/static/css/board.scss -/home/rushilwiz/ion/intranet/static/css/eighth.attendance.scss -/home/rushilwiz/ion/intranet/static/css/dark/events.scss -/home/rushilwiz/ion/intranet/static/css/dark/schedule.scss -/home/rushilwiz/ion/intranet/static/css/dark/nav.scss -/home/rushilwiz/ion/intranet/static/css/dark/cke.scss -/home/rushilwiz/ion/intranet/static/css/dark/files.scss -/home/rushilwiz/ion/intranet/static/css/dark/dashboard.widgets.scss -/home/rushilwiz/ion/intranet/static/css/dark/bus.scss -/home/rushilwiz/ion/intranet/static/css/dark/eighth.signup.scss -/home/rushilwiz/ion/intranet/static/css/dark/oauth.scss -/home/rushilwiz/ion/intranet/static/css/dark/about.scss -/home/rushilwiz/ion/intranet/static/css/dark/lostfound.scss -/home/rushilwiz/ion/intranet/static/css/dark/welcome.scss -/home/rushilwiz/ion/intranet/static/css/dark/sessionmgmt.scss -/home/rushilwiz/ion/intranet/static/css/dark/schedule.widget.scss -/home/rushilwiz/ion/intranet/static/css/dark/dashboard.scss -/home/rushilwiz/ion/intranet/static/css/dark/login.scss -/home/rushilwiz/ion/intranet/static/css/dark/eighth.schedule.scss -/home/rushilwiz/ion/intranet/static/css/dark/polls.scss -/home/rushilwiz/ion/intranet/static/css/dark/select.scss -/home/rushilwiz/ion/intranet/static/css/dark/base.scss -/home/rushilwiz/ion/intranet/static/css/dark/preferences.scss -/home/rushilwiz/ion/intranet/static/css/dark/eighth.attendance.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2 -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4 -/home/rushilwiz/ion/intranet/static/vendor/ckeditor -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5 -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21 -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0 -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom -/home/rushilwiz/ion/intranet/static/vendor/messenger -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/sprites -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_core.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_shims.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_stacked.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_animated.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_bordered-pulled.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_rotated-flipped.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/solid.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/v4-shims.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_fixed-width.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/fontawesome.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_screen-reader.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_list.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/brands.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_icons.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_variables.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_mixins.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_larger.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/regular.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/shims.json -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/sponsors.yml -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/icons.json -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/icons.yml -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/categories.yml -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/shims.yml -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/v4-shims.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/brands.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/brands.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/fontawesome.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/regular.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/solid.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/v4-shims.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/conflict-detection.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/fontawesome.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/solid.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/all.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/regular.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/all.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/conflict-detection.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_core.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_animated.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/v4-shims.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/brands.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_variables.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_icons.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_screen-reader.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_bordered-pulled.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/fontawesome.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/solid.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_shims.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_larger.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_rotated-flipped.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_list.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_mixins.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/regular.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_fixed-width.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_stacked.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.ttf -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.woff2 -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.ttf -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.woff2 -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.woff -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.woff2 -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.eot -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.ttf -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.woff -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.eot -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.woff -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.eot -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs/solid -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs/brands -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs/regular -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/solid.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/v4-shims.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/brands.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/all.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/svg-with-js.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/all.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/regular.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/solid.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/svg-with-js.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/v4-shims.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/regular.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/brands.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/fontawesome.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/fontawesome.min.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/package.json -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/selectize.jquery.json -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/yarn.lock -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/bower.json -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/Makefile -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/README.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/Gruntfile.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/CHANGELOG.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/karma.conf.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/events.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/plugins.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/api.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/usage.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/contrib -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/utils.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/selectize.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/selectize.jquery.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/constants.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/defaults.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/contrib/microevent.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/contrib/highlight.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.bootstrap2.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.legacy.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.bootstrap3.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.default.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/remove_button -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/optgroup_columns -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/restore_on_backspace -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/dropdown_header -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/drag_drop -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/remove_button/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/remove_button/plugin.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/optgroup_columns/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/optgroup_columns/plugin.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/restore_on_backspace/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/dropdown_header/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/dropdown_header/plugin.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/drag_drop/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/drag_drop/plugin.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/api.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/events.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/events_dom.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/xss.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/setup.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/support -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/interaction.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/support/base.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/support/syn.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.bootstrap2.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.legacy.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.bootstrap3.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.default.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/remove_button.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/drag_drop.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/dropdown_header.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/optgroup_columns.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/selectize.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/standalone -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/selectize.min.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/standalone/selectize.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/standalone/selectize.min.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.default.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.bootstrap2.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.bootstrap3.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.legacy.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/images -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/contacts.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/rtl.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/events.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/movies.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/basic.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/required.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/create-filter.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/dynamic.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/optgroups.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/github.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/cities.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/lock.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/performance.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/confirm.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/plugins.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/api.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/customization.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/jqueryui.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/index.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/es5.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/jquery.min.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/css/normalize.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/css/stylesheet.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/LICENSE.md -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/contents.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/adapters -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/CHANGES.md -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/styles.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/build-config.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/config.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/README.md -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/lang -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/ckeditor.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/adapters/jquery.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/lang/en.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/clipboard -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/dialog -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/images -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/dialogs -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/images/hidpi -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/dialogs/link.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/dialogs/anchor.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/clipboard/dialogs -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/clipboard/dialogs/paste.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/dialog/dialogDefinition.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/images -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/fr.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/en.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/tr.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/de.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/es.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/vi.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/nn.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/it.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ru.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/cs.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/pl.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/fi.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/zh.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/hu.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/sk.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ko.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/he.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ja.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/et.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/nl.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ar.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/pt.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/pt-br.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/nb.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/el.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image/images -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image/dialogs -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image/dialogs/image.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/images -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_ie8.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_iequirks.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_opera.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_ie.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_ie7.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_ie.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_ie7.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_ie8.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/readme.md -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_gecko.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_iequirks.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/images/hidpi -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/dialog -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_richcombo.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_elementspath.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_toolbar.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_reset.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_panel.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_presets.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_menu.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_colorpanel.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_mainui.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/editor.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie8 -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/opera -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie7 -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/gecko -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/dialog_ie8.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/editor_ie8.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/opera/dialog_opera.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie7/dialog_ie7.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie7/editor_ie7.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/gecko/editor_gecko.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie/editor_ie.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie/dialog_ie.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/dialog_iequirks.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/editor_iequirks.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/dialog/dialog.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config/_defaults.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config/_config.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config/_colors.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/bootstrapck-sample.html -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/js/jquery-1.11.0.min.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/js/analytics.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/css/bootstrapck-sample.css -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/package.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/jquery.datetimepicker.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/bower.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/jquery.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/index.html -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/README.md -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/screen -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/jquery.datetimepicker.css -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/datetimepicker.jquery.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/package.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/jquery.datetimepicker.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/doc.tpl -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/bower.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/jquery.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/index.html -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/README.md -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/screen -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/jquery.datetimepicker.css -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/datetimepicker.jquery.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/karma.conf.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/input_in_container_fixed_to_bottom_of_viewport.html -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/input_in_container_fixed_to_top_of_viewport.html -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/index.html -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/app.css -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/destroy.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/events.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/bootstrap.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/options.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/init.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/methods.js -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/package.json -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/component.json -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/bower.json -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/Gruntfile.coffee -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/install.json -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/README.md -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/coffee -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js/sortable.js -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js/sortable.min.js -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js/install.js -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/api -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/welcome -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/intro.md -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/api/2-Themes.md -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/api/1-Options.md -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/welcome/index.html -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-finder.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-slick.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/_sortable.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-dark.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-minimal.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-light.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-bootstrap.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-light.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-slick.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-bootstrap.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-finder.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-minimal.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-dark.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/coffee/sortable.coffee -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/images -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.theme.min.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.theme.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.structure.min.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/index.html -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.min.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.js -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.structure.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/external -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.min.js -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/external/jquery -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/external/jquery/jquery.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/package.json -/home/rushilwiz/ion/intranet/static/vendor/messenger/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib -/home/rushilwiz/ion/intranet/static/vendor/messenger/component.json -/home/rushilwiz/ion/intranet/static/vendor/messenger/CONTRIBUTORS -/home/rushilwiz/ion/intranet/static/vendor/messenger/build -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs -/home/rushilwiz/ion/intranet/static/vendor/messenger/bower.json -/home/rushilwiz/ion/intranet/static/vendor/messenger/Gruntfile.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/src -/home/rushilwiz/ion/intranet/static/vendor/messenger/README.md -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec -/home/rushilwiz/ion/intranet/static/vendor/messenger/SpecRunner.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/CHANGELOG.md -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1 -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/shims.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/sinon-1.6.0.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/MIT.LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/jasmine.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/jasmine-html.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/jasmine.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/backbone -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/jasmine -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/underscore -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/sinon -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger.min.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger-theme-future.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger-theme-flat.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-block.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-flat.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-future.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-air.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-spinner.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-ice.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/images -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/intro.md -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/images -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/index.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/iframe-demo.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/location-sel.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/theme-sel.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/execute.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/location-sel.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/demo.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/main.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/theme-sel.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1 -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/shims.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/sinon-1.6.0.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/MIT.LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/jasmine.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/jasmine-html.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/jasmine.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/README.md -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/demo.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/underscore.min.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/coffee-script.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/js2coffee.min.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/codemirror.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/codemirror.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript/coffeescript.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript/index.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript/index.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript/javascript.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript/typescript.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/js/executr.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/css/executr.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/css/executr.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/coffee/executr.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/backbone -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/jasmine -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/underscore -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/sinon -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/location-sel.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/theme-sel.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/stylesheet.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/theme-sel.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/pygment_trac.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/location-sel.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/demo.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/js -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/js/preboot.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-air.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-spinner.scss -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-flat.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-future.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-block.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-ice.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee/messenger.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee/messenger-theme-future.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee/messenger-theme-flat.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/MessengerSpec.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/MessengerSpec.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib/jquery-1.9.1.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib/backbone-0.9.10.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib/underscore-1.4.4.js -/home/rushilwiz/ion/intranet/templates/blank.html -/home/rushilwiz/ion/intranet/templates/page_with_nav.html -/home/rushilwiz/ion/intranet/templates/error -/home/rushilwiz/ion/intranet/templates/search -/home/rushilwiz/ion/intranet/templates/oauth2_provider -/home/rushilwiz/ion/intranet/templates/monitoring -/home/rushilwiz/ion/intranet/templates/notifications -/home/rushilwiz/ion/intranet/templates/auth -/home/rushilwiz/ion/intranet/templates/users -/home/rushilwiz/ion/intranet/templates/lostfound -/home/rushilwiz/ion/intranet/templates/events -/home/rushilwiz/ion/intranet/templates/eighth -/home/rushilwiz/ion/intranet/templates/files -/home/rushilwiz/ion/intranet/templates/itemreg -/home/rushilwiz/ion/intranet/templates/page_with_header.html -/home/rushilwiz/ion/intranet/templates/docs -/home/rushilwiz/ion/intranet/templates/polls -/home/rushilwiz/ion/intranet/templates/seniors -/home/rushilwiz/ion/intranet/templates/bus -/home/rushilwiz/ion/intranet/templates/signage -/home/rushilwiz/ion/intranet/templates/email_metadata.html -/home/rushilwiz/ion/intranet/templates/page_base.html -/home/rushilwiz/ion/intranet/templates/schedule -/home/rushilwiz/ion/intranet/templates/welcome -/home/rushilwiz/ion/intranet/templates/email_footer.html -/home/rushilwiz/ion/intranet/templates/special -/home/rushilwiz/ion/intranet/templates/maint.html -/home/rushilwiz/ion/intranet/templates/android_client_check.html -/home/rushilwiz/ion/intranet/templates/nav.html -/home/rushilwiz/ion/intranet/templates/groups -/home/rushilwiz/ion/intranet/templates/feature_announcements.html -/home/rushilwiz/ion/intranet/templates/credits.html -/home/rushilwiz/ion/intranet/templates/feedback -/home/rushilwiz/ion/intranet/templates/rest_framework -/home/rushilwiz/ion/intranet/templates/parking -/home/rushilwiz/ion/intranet/templates/dashboard -/home/rushilwiz/ion/intranet/templates/announcements -/home/rushilwiz/ion/intranet/templates/meta.html -/home/rushilwiz/ion/intranet/templates/sessionmgmt -/home/rushilwiz/ion/intranet/templates/emailfwd -/home/rushilwiz/ion/intranet/templates/preferences -/home/rushilwiz/ion/intranet/templates/printing -/home/rushilwiz/ion/intranet/templates/error/503.html -/home/rushilwiz/ion/intranet/templates/error/403.html -/home/rushilwiz/ion/intranet/templates/error/error_base.html -/home/rushilwiz/ion/intranet/templates/error/csrf.html -/home/rushilwiz/ion/intranet/templates/error/404.html -/home/rushilwiz/ion/intranet/templates/error/500.html -/home/rushilwiz/ion/intranet/templates/error/static -/home/rushilwiz/ion/intranet/templates/error/static/503.html -/home/rushilwiz/ion/intranet/templates/error/static/504.html -/home/rushilwiz/ion/intranet/templates/error/static/signage.html -/home/rushilwiz/ion/intranet/templates/error/static/403.html -/home/rushilwiz/ion/intranet/templates/error/static/unavailable.html -/home/rushilwiz/ion/intranet/templates/error/static/502.html -/home/rushilwiz/ion/intranet/templates/error/static/501.html -/home/rushilwiz/ion/intranet/templates/error/static/404.html -/home/rushilwiz/ion/intranet/templates/error/static/500.html -/home/rushilwiz/ion/intranet/templates/search/tips.html -/home/rushilwiz/ion/intranet/templates/search/search_results.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/authorized-token-delete.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_form.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/authorize.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_list.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_confirm_delete.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/authorized-tokens.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_detail.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_registration_form.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/base.html -/home/rushilwiz/ion/intranet/templates/notifications/gcm_list.html -/home/rushilwiz/ion/intranet/templates/notifications/gcm_post.html -/home/rushilwiz/ion/intranet/templates/auth/ap_week_schedule.html -/home/rushilwiz/ion/intranet/templates/auth/login.html -/home/rushilwiz/ion/intranet/templates/auth/reauth.html -/home/rushilwiz/ion/intranet/templates/auth/about.html -/home/rushilwiz/ion/intranet/templates/auth/reset_password.html -/home/rushilwiz/ion/intranet/templates/users/schedule_rows.html -/home/rushilwiz/ion/intranet/templates/users/all_courses.html -/home/rushilwiz/ion/intranet/templates/users/profile.html -/home/rushilwiz/ion/intranet/templates/users/all_classes.html -/home/rushilwiz/ion/intranet/templates/users/class_room.html -/home/rushilwiz/ion/intranet/templates/users/class.html -/home/rushilwiz/ion/intranet/templates/lostfound/lostitem.html -/home/rushilwiz/ion/intranet/templates/lostfound/founditem_form.html -/home/rushilwiz/ion/intranet/templates/lostfound/founditem.html -/home/rushilwiz/ion/intranet/templates/lostfound/lostitem_form.html -/home/rushilwiz/ion/intranet/templates/lostfound/item_view.html -/home/rushilwiz/ion/intranet/templates/lostfound/home.html -/home/rushilwiz/ion/intranet/templates/lostfound/lostitem_delete.html -/home/rushilwiz/ion/intranet/templates/lostfound/founditem_delete.html -/home/rushilwiz/ion/intranet/templates/events/add_modify.html -/home/rushilwiz/ion/intranet/templates/events/event.html -/home/rushilwiz/ion/intranet/templates/events/public_event.html -/home/rushilwiz/ion/intranet/templates/events/emails -/home/rushilwiz/ion/intranet/templates/events/join_event.html -/home/rushilwiz/ion/intranet/templates/events/delete.html -/home/rushilwiz/ion/intranet/templates/events/scheduled_activity.html -/home/rushilwiz/ion/intranet/templates/events/roster.html -/home/rushilwiz/ion/intranet/templates/events/home.html -/home/rushilwiz/ion/intranet/templates/events/tjstar_widget.html -/home/rushilwiz/ion/intranet/templates/events/emails/admin_approve.html -/home/rushilwiz/ion/intranet/templates/eighth/waitlist_list.html -/home/rushilwiz/ion/intranet/templates/eighth/profile.html -/home/rushilwiz/ion/intranet/templates/eighth/emails -/home/rushilwiz/ion/intranet/templates/eighth/email_students.html -/home/rushilwiz/ion/intranet/templates/eighth/multi_signup.html -/home/rushilwiz/ion/intranet/templates/eighth/profile_often.html -/home/rushilwiz/ion/intranet/templates/eighth/signup.html -/home/rushilwiz/ion/intranet/templates/eighth/roster_list.html -/home/rushilwiz/ion/intranet/templates/eighth/empty_state.html -/home/rushilwiz/ion/intranet/templates/eighth/profile_signup.html -/home/rushilwiz/ion/intranet/templates/eighth/signup_widget.html -/home/rushilwiz/ion/intranet/templates/eighth/roster.html -/home/rushilwiz/ion/intranet/templates/eighth/take_attendance.html -/home/rushilwiz/ion/intranet/templates/eighth/statistics.html -/home/rushilwiz/ion/intranet/templates/eighth/edit_profile.html -/home/rushilwiz/ion/intranet/templates/eighth/profile_header.html -/home/rushilwiz/ion/intranet/templates/eighth/admin -/home/rushilwiz/ion/intranet/templates/eighth/sponsor_widget.html -/home/rushilwiz/ion/intranet/templates/eighth/activity.html -/home/rushilwiz/ion/intranet/templates/eighth/absences.html -/home/rushilwiz/ion/intranet/templates/eighth/profile_history.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/room_changed_single.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/waitlist.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/room_changed_activity.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/activity_cancelled.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/withdrawn_students.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/absence.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/group_signup_complete.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/signup_status.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/import_notify.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/group_signup_error.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/add_block.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/room_utilization.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/delinquent_students.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_activity_id.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/add_activity.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/eighth_admin_page_base.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/room_sanity_check.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/sponsor_sanity_check.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_start_date.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/history.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/sponsor_schedule.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/no_signups_roster.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/dashboard.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/list_users.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/list_sponsors.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/room_utilization_for_block.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/choose_roster_activities.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/sign_up_group.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/copy_form.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/possible_students_add_group.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/keep_room_history.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/clear_comments.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/global_statistics.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/cache.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/after_deadline_signups.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/transfer_students.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/delete_user.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/start_date.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/view_activity_schedule.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/migrate_outstanding_passes.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/open_passes.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/activities_without_attendance.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/delete_form.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/add_sponsor.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/keep_sponsor_history.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/upload_group.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/distribute_group.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_activity.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/schedule_activity.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/maintenance.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/remove_duplicates.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/out_of_building_schedules.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/unschedule_activity.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_group.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_form.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/distribute_students.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/start_of_year.html -/home/rushilwiz/ion/intranet/templates/files/upload.html -/home/rushilwiz/ion/intranet/templates/files/directory.html -/home/rushilwiz/ion/intranet/templates/files/delete.html -/home/rushilwiz/ion/intranet/templates/files/auth.html -/home/rushilwiz/ion/intranet/templates/files/home.html -/home/rushilwiz/ion/intranet/templates/itemreg/search.html -/home/rushilwiz/ion/intranet/templates/itemreg/register_form.html -/home/rushilwiz/ion/intranet/templates/itemreg/item_view.html -/home/rushilwiz/ion/intranet/templates/itemreg/home.html -/home/rushilwiz/ion/intranet/templates/itemreg/register_delete.html -/home/rushilwiz/ion/intranet/templates/docs/accounts.html -/home/rushilwiz/ion/intranet/templates/docs/terminology.html -/home/rushilwiz/ion/intranet/templates/docs/privacy.html -/home/rushilwiz/ion/intranet/templates/polls/add_modify.html -/home/rushilwiz/ion/intranet/templates/polls/poll.html -/home/rushilwiz/ion/intranet/templates/polls/vote.html -/home/rushilwiz/ion/intranet/templates/polls/delete.html -/home/rushilwiz/ion/intranet/templates/polls/home.html -/home/rushilwiz/ion/intranet/templates/polls/results.html -/home/rushilwiz/ion/intranet/templates/seniors/signage.html -/home/rushilwiz/ion/intranet/templates/seniors/login.html -/home/rushilwiz/ion/intranet/templates/seniors/login_top.html -/home/rushilwiz/ion/intranet/templates/seniors/add.html -/home/rushilwiz/ion/intranet/templates/seniors/home.html -/home/rushilwiz/ion/intranet/templates/bus/home.html -/home/rushilwiz/ion/intranet/templates/signage/pages -/home/rushilwiz/ion/intranet/templates/signage/base.html -/home/rushilwiz/ion/intranet/templates/signage/pages/hello_world.html -/home/rushilwiz/ion/intranet/templates/signage/pages/announcements.html -/home/rushilwiz/ion/intranet/templates/signage/pages/eighth.html -/home/rushilwiz/ion/intranet/templates/signage/pages/bus.html -/home/rushilwiz/ion/intranet/templates/schedule/admin_daytype.html -/home/rushilwiz/ion/intranet/templates/schedule/month.html -/home/rushilwiz/ion/intranet/templates/schedule/embed.html -/home/rushilwiz/ion/intranet/templates/schedule/admin_add.html -/home/rushilwiz/ion/intranet/templates/schedule/admin_comment.html -/home/rushilwiz/ion/intranet/templates/schedule/week.html -/home/rushilwiz/ion/intranet/templates/schedule/view.html -/home/rushilwiz/ion/intranet/templates/schedule/admin_home.html -/home/rushilwiz/ion/intranet/templates/schedule/fill.html -/home/rushilwiz/ion/intranet/templates/schedule/week_view.html -/home/rushilwiz/ion/intranet/templates/schedule/widget.html -/home/rushilwiz/ion/intranet/templates/schedule/calendar.html -/home/rushilwiz/ion/intranet/templates/welcome/teacher.html -/home/rushilwiz/ion/intranet/templates/welcome/eighth_policy.html -/home/rushilwiz/ion/intranet/templates/welcome/mail_forwarding.html -/home/rushilwiz/ion/intranet/templates/welcome/student.html -/home/rushilwiz/ion/intranet/templates/welcome/base.html -/home/rushilwiz/ion/intranet/templates/special/hoco_ribbon.html -/home/rushilwiz/ion/intranet/templates/special/hoco_scores.html -/home/rushilwiz/ion/intranet/templates/groups/addmodify.html -/home/rushilwiz/ion/intranet/templates/groups/groups.html -/home/rushilwiz/ion/intranet/templates/feedback/email.html -/home/rushilwiz/ion/intranet/templates/feedback/form.html -/home/rushilwiz/ion/intranet/templates/rest_framework/login.html -/home/rushilwiz/ion/intranet/templates/rest_framework/api.html -/home/rushilwiz/ion/intranet/templates/parking/joint.html -/home/rushilwiz/ion/intranet/templates/parking/intro.html -/home/rushilwiz/ion/intranet/templates/parking/car.html -/home/rushilwiz/ion/intranet/templates/parking/form.html -/home/rushilwiz/ion/intranet/templates/dashboard/admin.html -/home/rushilwiz/ion/intranet/templates/dashboard/dashboard.html -/home/rushilwiz/ion/intranet/templates/dashboard/eighth_info.html -/home/rushilwiz/ion/intranet/templates/dashboard/promo.html -/home/rushilwiz/ion/intranet/templates/dashboard/senior_forwarding.html -/home/rushilwiz/ion/intranet/templates/dashboard/links.html -/home/rushilwiz/ion/intranet/templates/dashboard/seniors.html -/home/rushilwiz/ion/intranet/templates/announcements/add_modify.html -/home/rushilwiz/ion/intranet/templates/announcements/announcement.html -/home/rushilwiz/ion/intranet/templates/announcements/approve.html -/home/rushilwiz/ion/intranet/templates/announcements/request_status.html -/home/rushilwiz/ion/intranet/templates/announcements/emails -/home/rushilwiz/ion/intranet/templates/announcements/view.html -/home/rushilwiz/ion/intranet/templates/announcements/request.html -/home/rushilwiz/ion/intranet/templates/announcements/delete.html -/home/rushilwiz/ion/intranet/templates/announcements/success.html -/home/rushilwiz/ion/intranet/templates/announcements/emails/announcement_approved.html -/home/rushilwiz/ion/intranet/templates/announcements/emails/teacher_approve.html -/home/rushilwiz/ion/intranet/templates/announcements/emails/announcement_posted.html -/home/rushilwiz/ion/intranet/templates/announcements/emails/admin_approve.html -/home/rushilwiz/ion/intranet/templates/sessionmgmt/index.html -/home/rushilwiz/ion/intranet/templates/emailfwd/senior_forward.html -/home/rushilwiz/ion/intranet/templates/preferences/preferences.html -/home/rushilwiz/ion/intranet/templates/preferences/privacy_options.html -/home/rushilwiz/ion/intranet/templates/printing/print.html -/home/rushilwiz/ion/intranet/templates/printing/print_form.html -/home/rushilwiz/ion/scripts/make_dark_pattern_images.py -/home/rushilwiz/ion/scripts/validate-commit-messages.py -/home/rushilwiz/ion/scripts/get_ldif.py -/home/rushilwiz/ion/config/bash_completion.d -/home/rushilwiz/ion/config/krb5.conf -/home/rushilwiz/ion/config/devconfig.json -/home/rushilwiz/ion/config/devconfig.json.sample -/home/rushilwiz/ion/config/bash_completion.d/fab -/home/rushilwiz/ctf/google-ctf -/home/rushilwiz/ctf/google-ctf/day1 -/home/rushilwiz/ctf/google-ctf/day1/rand2.id2 -/home/rushilwiz/ctf/google-ctf/day1/rand2.id0 -/home/rushilwiz/ctf/google-ctf/day1/rand2.id1 -/home/rushilwiz/ctf/google-ctf/day1/rand2.til -/home/rushilwiz/ctf/google-ctf/day1/rand2.nam -/home/rushilwiz/ctf/google-ctf/day1/rand2 -/home/rushilwiz/Projects/hoco2020 -/home/rushilwiz/Projects/selenium -/home/rushilwiz/Projects/webserver -/home/rushilwiz/Projects/chirper -/home/rushilwiz/Projects/hoco2020/index.html -/home/rushilwiz/Projects/hoco2020/styles.css -/home/rushilwiz/Projects/hoco2020/main.js -/home/rushilwiz/Projects/hoco2020/package-lock.json -/home/rushilwiz/Projects/selenium/data.json -/home/rushilwiz/Projects/selenium/geckodriver.log -/home/rushilwiz/Projects/selenium/webscraper.py -/home/rushilwiz/Projects/chirper/README.md -/home/rushilwiz/Projects/chirper/chirper -/home/rushilwiz/Projects/chirper/chirper/db.sqlite3 -/home/rushilwiz/Projects/chirper/chirper/users -/home/rushilwiz/Projects/chirper/chirper/blog -/home/rushilwiz/Projects/chirper/chirper/manage.py -/home/rushilwiz/Projects/chirper/chirper/media -/home/rushilwiz/Projects/chirper/chirper/chirper -/home/rushilwiz/Projects/chirper/chirper/file.html -/home/rushilwiz/Projects/chirper/chirper/users/migrations -/home/rushilwiz/Projects/chirper/chirper/users/__init__.py -/home/rushilwiz/Projects/chirper/chirper/users/tests.py -/home/rushilwiz/Projects/chirper/chirper/users/models.py -/home/rushilwiz/Projects/chirper/chirper/users/apps.py -/home/rushilwiz/Projects/chirper/chirper/users/admin.py -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__ -/home/rushilwiz/Projects/chirper/chirper/users/views.py -/home/rushilwiz/Projects/chirper/chirper/users/forms.py -/home/rushilwiz/Projects/chirper/chirper/users/signals.py -/home/rushilwiz/Projects/chirper/chirper/users/templates -/home/rushilwiz/Projects/chirper/chirper/users/migrations/__init__.py -/home/rushilwiz/Projects/chirper/chirper/users/migrations/0001_initial.py -/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__ -/home/rushilwiz/Projects/chirper/chirper/users/migrations/0002_auto_20200526_0344.py -/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__/0001_initial.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__/0002_auto_20200526_0344.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/admin.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/forms.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/signals.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/models.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/apps.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/views.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/urls.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/templates/users -/home/rushilwiz/Projects/chirper/chirper/users/templates/users/login.html -/home/rushilwiz/Projects/chirper/chirper/users/templates/users/profile.html -/home/rushilwiz/Projects/chirper/chirper/users/templates/users/logout.html -/home/rushilwiz/Projects/chirper/chirper/blog/migrations -/home/rushilwiz/Projects/chirper/chirper/blog/__init__.py -/home/rushilwiz/Projects/chirper/chirper/blog/tests.py -/home/rushilwiz/Projects/chirper/chirper/blog/models.py -/home/rushilwiz/Projects/chirper/chirper/blog/apps.py -/home/rushilwiz/Projects/chirper/chirper/blog/admin.py -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__ -/home/rushilwiz/Projects/chirper/chirper/blog/views.py -/home/rushilwiz/Projects/chirper/chirper/blog/static -/home/rushilwiz/Projects/chirper/chirper/blog/urls.py -/home/rushilwiz/Projects/chirper/chirper/blog/templates -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__init__.py -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/0002_auto_20200430_0415.py -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/0001_initial.py -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__ -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/0003_remove_post_title.py -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/0002_auto_20200430_0415.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/0001_initial.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/0003_remove_post_title.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/admin.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/models.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/apps.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/views.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/urls.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/static/android-chrome-192x192.png:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/favicon.ico:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/android-chrome-512x512.png:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/favicon-16x16.png:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI Bold Italic.ttf:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/site.webmanifest -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog -/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI.ttf:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI Italic.ttf:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/site.webmanifest:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/apple-touch-icon.png:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI Bold.ttf:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/favicon-32x32.png:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/futura.ttf -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI.ttf -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI Italic.ttf -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI Bold Italic.ttf -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/styles.css -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI Bold.ttf -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/user_posts.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/post_detail.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/post_confirm_delete.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/home.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/about.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/post_form.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/base.html -/home/rushilwiz/Projects/chirper/chirper/media/profile_pics -/home/rushilwiz/Projects/chirper/chirper/chirper/wsgi.py -/home/rushilwiz/Projects/chirper/chirper/chirper/__init__.py -/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__ -/home/rushilwiz/Projects/chirper/chirper/chirper/settings.py -/home/rushilwiz/Projects/chirper/chirper/chirper/asgi.py -/home/rushilwiz/Projects/chirper/chirper/chirper/urls.py -/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/wsgi.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/settings.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/urls.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/2023rumareti -/home/rushilwiz/SkoolOS/eharris1 -/home/rushilwiz/SkoolOS/LICENSE -/home/rushilwiz/SkoolOS/skoolos.py -/home/rushilwiz/SkoolOS/docs -/home/rushilwiz/SkoolOS/sstern1 -/home/rushilwiz/SkoolOS/bgservice -/home/rushilwiz/SkoolOS/README.md -/home/rushilwiz/SkoolOS/chromedriver -/home/rushilwiz/SkoolOS/CLI -/home/rushilwiz/SkoolOS/Website -/home/rushilwiz/SkoolOS/2023rumareti/README.md -/home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -/home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -/home/rushilwiz/SkoolOS/eharris1/History12_eharris1/README.md -/home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -/home/rushilwiz/SkoolOS/docs/build -/home/rushilwiz/SkoolOS/docs/source -/home/rushilwiz/SkoolOS/docs/Makefile -/home/rushilwiz/SkoolOS/docs/make.bat -/home/rushilwiz/SkoolOS/docs/build/html -/home/rushilwiz/SkoolOS/docs/build/doctrees -/home/rushilwiz/SkoolOS/docs/build/html/cli.html -/home/rushilwiz/SkoolOS/docs/build/html/objects.inv -/home/rushilwiz/SkoolOS/docs/build/html/genindex.html -/home/rushilwiz/SkoolOS/docs/build/html/license.html -/home/rushilwiz/SkoolOS/docs/build/html/search.html -/home/rushilwiz/SkoolOS/docs/build/html/_static -/home/rushilwiz/SkoolOS/docs/build/html/webapp.html -/home/rushilwiz/SkoolOS/docs/build/html/index.html -/home/rushilwiz/SkoolOS/docs/build/html/install.html -/home/rushilwiz/SkoolOS/docs/build/html/background_service.html -/home/rushilwiz/SkoolOS/docs/build/html/searchindex.js -/home/rushilwiz/SkoolOS/docs/build/html/_sources -/home/rushilwiz/SkoolOS/docs/build/html/_static/searchtools.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/alabaster.css -/home/rushilwiz/SkoolOS/docs/build/html/_static/pygments.css -/home/rushilwiz/SkoolOS/docs/build/html/_static/language_data.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/basic.css -/home/rushilwiz/SkoolOS/docs/build/html/_static/doctools.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/jquery.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/underscore.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/underscore-1.3.1.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/custom.css -/home/rushilwiz/SkoolOS/docs/build/html/_static/jquery-3.5.1.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/documentation_options.js -/home/rushilwiz/SkoolOS/docs/build/doctrees/background_service.doctree -/home/rushilwiz/SkoolOS/docs/build/doctrees/license.doctree -/home/rushilwiz/SkoolOS/docs/build/doctrees/environment.pickle -/home/rushilwiz/SkoolOS/docs/build/doctrees/install.doctree -/home/rushilwiz/SkoolOS/docs/build/doctrees/index.doctree -/home/rushilwiz/SkoolOS/docs/build/doctrees/cli.doctree -/home/rushilwiz/SkoolOS/docs/build/doctrees/webapp.doctree -/home/rushilwiz/SkoolOS/docs/source/license.rst -/home/rushilwiz/SkoolOS/docs/source/_static -/home/rushilwiz/SkoolOS/docs/source/cli.rst -/home/rushilwiz/SkoolOS/docs/source/_templates -/home/rushilwiz/SkoolOS/docs/source/conf.py -/home/rushilwiz/SkoolOS/docs/source/webapp.rst -/home/rushilwiz/SkoolOS/docs/source/install.rst -/home/rushilwiz/SkoolOS/docs/source/background_service.rst -/home/rushilwiz/SkoolOS/docs/source/index.rst -/home/rushilwiz/SkoolOS/sstern1/Students -/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/2023rumareti -/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/2023rumareti/README.md -/home/rushilwiz/SkoolOS/bgservice/__init__.py -/home/rushilwiz/SkoolOS/bgservice/SkoolOS -/home/rushilwiz/SkoolOS/bgservice/__pycache__ -/home/rushilwiz/SkoolOS/bgservice/run.py -/home/rushilwiz/SkoolOS/bgservice/bgservice.py -/home/rushilwiz/SkoolOS/bgservice/test.py -/home/rushilwiz/SkoolOS/bgservice/checker.py -/home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -/home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs/skoolos_06162020-210523 -/home/rushilwiz/SkoolOS/bgservice/__pycache__/checker.cpython-38.pyc -/home/rushilwiz/SkoolOS/bgservice/__pycache__/bgservice.cpython-38.pyc -/home/rushilwiz/SkoolOS/chromedriver/chromedriver.exe -/home/rushilwiz/SkoolOS/chromedriver/chromedriver-linux -/home/rushilwiz/SkoolOS/chromedriver/chromedriver-mac -/home/rushilwiz/SkoolOS/CLI/teacher.py -/home/rushilwiz/SkoolOS/CLI/__pycache__ -/home/rushilwiz/SkoolOS/CLI/student.py -/home/rushilwiz/SkoolOS/CLI/__pycache__/student.cpython-38.pyc -/home/rushilwiz/SkoolOS/CLI/__pycache__/teacher.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api -/home/rushilwiz/SkoolOS/Website/db.sqlite3 -/home/rushilwiz/SkoolOS/Website/users -/home/rushilwiz/SkoolOS/Website/manage.py -/home/rushilwiz/SkoolOS/Website/skoolos -/home/rushilwiz/SkoolOS/Website/config -/home/rushilwiz/SkoolOS/Website/templates -/home/rushilwiz/SkoolOS/Website/api/migrations -/home/rushilwiz/SkoolOS/Website/api/__init__.py -/home/rushilwiz/SkoolOS/Website/api/serializers.py -/home/rushilwiz/SkoolOS/Website/api/views-back.py -/home/rushilwiz/SkoolOS/Website/api/tests.py -/home/rushilwiz/SkoolOS/Website/api/models.py -/home/rushilwiz/SkoolOS/Website/api/apps.py -/home/rushilwiz/SkoolOS/Website/api/admin.py -/home/rushilwiz/SkoolOS/Website/api/maker.py -/home/rushilwiz/SkoolOS/Website/api/__pycache__ -/home/rushilwiz/SkoolOS/Website/api/auth.py -/home/rushilwiz/SkoolOS/Website/api/views.py -/home/rushilwiz/SkoolOS/Website/api/signals.py -/home/rushilwiz/SkoolOS/Website/api/permissions.py -/home/rushilwiz/SkoolOS/Website/api/urls.py -/home/rushilwiz/SkoolOS/Website/api/migrations/__init__.py -/home/rushilwiz/SkoolOS/Website/api/migrations/0001_initial.py -/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__ -/home/rushilwiz/SkoolOS/Website/api/migrations/0003_student_log.py -/home/rushilwiz/SkoolOS/Website/api/migrations/0002_auto_20200616_2012.py -/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__/0001_initial.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__/0003_student_log.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__/0002_auto_20200616_2012.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/admin.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/models.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/permissions.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/views.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/serializers.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/migrations -/home/rushilwiz/SkoolOS/Website/users/__init__.py -/home/rushilwiz/SkoolOS/Website/users/tests.py -/home/rushilwiz/SkoolOS/Website/users/models.py -/home/rushilwiz/SkoolOS/Website/users/apps.py -/home/rushilwiz/SkoolOS/Website/users/admin.py -/home/rushilwiz/SkoolOS/Website/users/__pycache__ -/home/rushilwiz/SkoolOS/Website/users/views.py -/home/rushilwiz/SkoolOS/Website/users/forms.py -/home/rushilwiz/SkoolOS/Website/users/pwd.py -/home/rushilwiz/SkoolOS/Website/users/static -/home/rushilwiz/SkoolOS/Website/users/templates -/home/rushilwiz/SkoolOS/Website/users/migrations/__init__.py -/home/rushilwiz/SkoolOS/Website/users/migrations/0001_initial.py -/home/rushilwiz/SkoolOS/Website/users/migrations/__pycache__ -/home/rushilwiz/SkoolOS/Website/users/migrations/__pycache__/0001_initial.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/migrations/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/admin.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/forms.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/models.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/apps.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/views.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/static/users -/home/rushilwiz/SkoolOS/Website/users/static/users/styles.css -/home/rushilwiz/SkoolOS/Website/users/templates/users -/home/rushilwiz/SkoolOS/Website/users/templates/users/login.html -/home/rushilwiz/SkoolOS/Website/users/templates/users/create_account.html -/home/rushilwiz/SkoolOS/Website/users/templates/users/register.html -/home/rushilwiz/SkoolOS/Website/users/templates/users/base.html -/home/rushilwiz/SkoolOS/Website/skoolos/__init__.py -/home/rushilwiz/SkoolOS/Website/skoolos/tests.py -/home/rushilwiz/SkoolOS/Website/skoolos/models.py -/home/rushilwiz/SkoolOS/Website/skoolos/apps.py -/home/rushilwiz/SkoolOS/Website/skoolos/admin.py -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__ -/home/rushilwiz/SkoolOS/Website/skoolos/views.py -/home/rushilwiz/SkoolOS/Website/skoolos/forms.py -/home/rushilwiz/SkoolOS/Website/skoolos/static -/home/rushilwiz/SkoolOS/Website/skoolos/urls.py -/home/rushilwiz/SkoolOS/Website/skoolos/templates -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/admin.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/forms.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/models.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/apps.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/views.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/urls.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/futura.ttf -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI.ttf -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI Italic.ttf -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI Bold Italic.ttf -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/styles.css -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI Bold.ttf -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/profile_teacher.html -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/class_detail.html -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/profile_student.html -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/createClass.html -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/home.html -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/base.html -/home/rushilwiz/SkoolOS/Website/config/wsgi.py -/home/rushilwiz/SkoolOS/Website/config/__init__.py -/home/rushilwiz/SkoolOS/Website/config/__pycache__ -/home/rushilwiz/SkoolOS/Website/config/settings.py -/home/rushilwiz/SkoolOS/Website/config/asgi.py -/home/rushilwiz/SkoolOS/Website/config/urls.py -/home/rushilwiz/SkoolOS/Website/config/__pycache__/wsgi.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/config/__pycache__/settings.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/config/__pycache__/urls.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/config/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -/home/rushilwiz/SkoolOS/Website/templates/base.html -/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider/login.html -/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider/authorize.html -/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider/logged_out.html -/home/rushilwiz/idafree-7.0/qt.conf -/home/rushilwiz/idafree-7.0/uninstall.dat -/home/rushilwiz/idafree-7.0/assistant -/home/rushilwiz/idafree-7.0/ida.hlp -/home/rushilwiz/idafree-7.0/idc -/home/rushilwiz/idafree-7.0/libida64.so -/home/rushilwiz/idafree-7.0/loaders -/home/rushilwiz/idafree-7.0/libX11-xcb.so.1 -/home/rushilwiz/idafree-7.0/sig -/home/rushilwiz/idafree-7.0/libQt5Gui.so.5 -/home/rushilwiz/idafree-7.0/libQt5XcbQpa.so.5 -/home/rushilwiz/idafree-7.0/libQt5DBus.so.5 -/home/rushilwiz/idafree-7.0/libclpx.so -/home/rushilwiz/idafree-7.0/uninstall -/home/rushilwiz/idafree-7.0/ida64 -/home/rushilwiz/idafree-7.0/libQt5Network.so.5 -/home/rushilwiz/idafree-7.0/libQt5CLucene.so.5 -/home/rushilwiz/idafree-7.0/ida64.int -/home/rushilwiz/idafree-7.0/procs -/home/rushilwiz/idafree-7.0/ids -/home/rushilwiz/idafree-7.0/cfg -/home/rushilwiz/idafree-7.0/til -/home/rushilwiz/idafree-7.0/libQt5Widgets.so.5 -/home/rushilwiz/idafree-7.0/libQt5Help.so.5 -/home/rushilwiz/idafree-7.0/qidahelpcollection.qhc -/home/rushilwiz/idafree-7.0/dbgsrv -/home/rushilwiz/idafree-7.0/libQt5PrintSupport.so.5 -/home/rushilwiz/idafree-7.0/qidahelp.qch -/home/rushilwiz/idafree-7.0/libQt5Sql.so.5 -/home/rushilwiz/idafree-7.0/libQt5Core.so.5 -/home/rushilwiz/idafree-7.0/plugins -/home/rushilwiz/idafree-7.0/Uninstall IDA Freeware 7.0.desktop -/home/rushilwiz/idafree-7.0/libdwarfx.so -/home/rushilwiz/idafree-7.0/idc/idc.idc -/home/rushilwiz/idafree-7.0/loaders/pe64.so -/home/rushilwiz/idafree-7.0/loaders/macho64.so -/home/rushilwiz/idafree-7.0/loaders/elf64.so -/home/rushilwiz/idafree-7.0/sig/list -/home/rushilwiz/idafree-7.0/sig/pc -/home/rushilwiz/idafree-7.0/sig/pc/vc64mfc.sig -/home/rushilwiz/idafree-7.0/sig/pc/msmfc64d.sig -/home/rushilwiz/idafree-7.0/sig/pc/msmfc64.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64_14.sig -/home/rushilwiz/idafree-7.0/sig/pc/ms64wdk.sig -/home/rushilwiz/idafree-7.0/sig/pc/bcb5rt.sig -/home/rushilwiz/idafree-7.0/sig/pc/msmfc64u.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc32rtf.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64atl.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64rtf.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64ucrt.sig -/home/rushilwiz/idafree-7.0/sig/pc/iclapp64.sig -/home/rushilwiz/idafree-7.0/sig/pc/mssdk64.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64extra.sig -/home/rushilwiz/idafree-7.0/sig/pc/win64unx.sig -/home/rushilwiz/idafree-7.0/sig/pc/vcseh.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64seh.sig -/home/rushilwiz/idafree-7.0/sig/pc/pe64.sig -/home/rushilwiz/idafree-7.0/procs/pc64.so -/home/rushilwiz/idafree-7.0/ids/win7.zip -/home/rushilwiz/idafree-7.0/ids/idsnames -/home/rushilwiz/idafree-7.0/cfg/exceptions.cfg -/home/rushilwiz/idafree-7.0/cfg/idagui.cfg -/home/rushilwiz/idafree-7.0/cfg/ida.cfg -/home/rushilwiz/idafree-7.0/til/gnuunx64.til -/home/rushilwiz/idafree-7.0/til/pc -/home/rushilwiz/idafree-7.0/til/macosx64.til -/home/rushilwiz/idafree-7.0/til/pc/gnulnx_x64.til -/home/rushilwiz/idafree-7.0/til/pc/ntddk64.til -/home/rushilwiz/idafree-7.0/til/pc/vc6win.til -/home/rushilwiz/idafree-7.0/til/pc/vc10_64.til -/home/rushilwiz/idafree-7.0/til/pc/mssdk.til -/home/rushilwiz/idafree-7.0/til/pc/vc8amd64.til -/home/rushilwiz/idafree-7.0/til/pc/bcb5win.til -/home/rushilwiz/idafree-7.0/plugins/bdescr64.so -/home/rushilwiz/idafree-7.0/plugins/platformthemes -/home/rushilwiz/idafree-7.0/plugins/plugins.cfg -/home/rushilwiz/idafree-7.0/plugins/tds64.so -/home/rushilwiz/idafree-7.0/plugins/objc64.so -/home/rushilwiz/idafree-7.0/plugins/dwarf64.so -/home/rushilwiz/idafree-7.0/plugins/linux_user64.so -/home/rushilwiz/idafree-7.0/plugins/platforms -/home/rushilwiz/idafree-7.0/plugins/dbg64.so -/home/rushilwiz/idafree-7.0/plugins/platformthemes/libqgtk2.so -/home/rushilwiz/idafree-7.0/plugins/platforms/libqoffscreen.so -/home/rushilwiz/idafree-7.0/plugins/platforms/libqminimal.so -/home/rushilwiz/idafree-7.0/plugins/platforms/libqlinuxfb.so -/home/rushilwiz/idafree-7.0/plugins/platforms/libqxcb.so -/home/rushilwiz/Documents/Google Web Designer -/home/rushilwiz/Documents/login.html -/home/rushilwiz/Documents/GitHub -/home/rushilwiz/Documents/the_r_ontheledgeandshit_starterpack.kra -/home/rushilwiz/Documents/Google Web Designer/templates -/home/rushilwiz/Documents/GitHub/crucialnet -/home/rushilwiz/Documents/GitHub/crucialnet/post_templates -/home/rushilwiz/Documents/GitHub/crucialnet/server -/home/rushilwiz/Documents/GitHub/crucialnet/site -/home/rushilwiz/Documents/GitHub/crucialnet/README.md -/home/rushilwiz/Documents/GitHub/crucialnet/testing -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction -/home/rushilwiz/Documents/GitHub/crucialnet/ssl -/home/rushilwiz/Documents/GitHub/crucialnet/post_templates/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/server/pswd.exe -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives -/home/rushilwiz/Documents/GitHub/crucialnet/site/site.webmanifest -/home/rushilwiz/Documents/GitHub/crucialnet/site/js -/home/rushilwiz/Documents/GitHub/crucialnet/site/404 -/home/rushilwiz/Documents/GitHub/crucialnet/site/browserconfig.xml -/home/rushilwiz/Documents/GitHub/crucialnet/site/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/resume -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me -/home/rushilwiz/Documents/GitHub/crucialnet/site/css -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/style.css -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/images -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/backgrounds -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/card-images -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/poststyle.css -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/2019 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/2019/01 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/2019/01/05 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/card-images/fmu.PNG -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/card-images/inbom.PNG -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts/Gotham-Bold.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts/Sans-Thin.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts/futura-pt-light.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019/01 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019/01/05 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019/01/05/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018/12 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018/12/22 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018/12/22/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/js/main.js -/home/rushilwiz/Documents/GitHub/crucialnet/site/404/style.css -/home/rushilwiz/Documents/GitHub/crucialnet/site/404/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/site.webmanifest -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/js -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/browserconfig.xml -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/js/main.js -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/style.css -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/fonts -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/fonts/Gotham-Bold.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/fonts/Sans-Thin.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/style.css -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/res -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/Gotham-Bold.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/Proxima Nova Alt Light.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/Sans-Thin.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/futura-pt-light.otf -/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog -/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar/style.css -/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar/main.js -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/page1.html -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/TEMPLATE -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019 -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/images -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/backgrounds -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/card-images -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/card-images/fm2u.PNG -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts/Gotham-Bold.otf -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts/Sans-Thin.otf -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts/futura-pt-light.otf -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/TEMPLATE/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019/01 -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019/01/01 -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019/01/01/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/js -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/css -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/js/index.js -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/css/styles.css -/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105 -/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg.vmdk -/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg-configdrive.vmdk -/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105.vbox-prev -/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105.vbox -/home/rushilwiz/crucialnet/the-archives -/home/rushilwiz/crucialnet/site.webmanifest -/home/rushilwiz/crucialnet/js -/home/rushilwiz/crucialnet/404 -/home/rushilwiz/crucialnet/browserconfig.xml -/home/rushilwiz/crucialnet/index.html -/home/rushilwiz/crucialnet/resume -/home/rushilwiz/crucialnet/README.md -/home/rushilwiz/crucialnet/contact-me -/home/rushilwiz/crucialnet/css -/home/rushilwiz/crucialnet/the-archives/res -/home/rushilwiz/crucialnet/the-archives/index.html -/home/rushilwiz/crucialnet/the-archives/2019 -/home/rushilwiz/crucialnet/the-archives/post-template.html -/home/rushilwiz/crucialnet/the-archives/2018 -/home/rushilwiz/crucialnet/the-archives/res/style.css -/home/rushilwiz/crucialnet/the-archives/res/images -/home/rushilwiz/crucialnet/the-archives/res/backgrounds -/home/rushilwiz/crucialnet/the-archives/res/posts -/home/rushilwiz/crucialnet/the-archives/res/card-images -/home/rushilwiz/crucialnet/the-archives/res/fonts -/home/rushilwiz/crucialnet/the-archives/res/posts/poststyle.css -/home/rushilwiz/crucialnet/the-archives/res/posts/2019 -/home/rushilwiz/crucialnet/the-archives/res/posts/2019/01 -/home/rushilwiz/crucialnet/the-archives/res/posts/2019/01/05 -/home/rushilwiz/crucialnet/the-archives/res/card-images/fmu.PNG -/home/rushilwiz/crucialnet/the-archives/res/card-images/inbom.PNG -/home/rushilwiz/crucialnet/the-archives/res/fonts/Gotham-Bold.otf -/home/rushilwiz/crucialnet/the-archives/res/fonts/Sans-Thin.otf -/home/rushilwiz/crucialnet/the-archives/res/fonts/futura-pt-light.otf -/home/rushilwiz/crucialnet/the-archives/2019/01 -/home/rushilwiz/crucialnet/the-archives/2019/01/05 -/home/rushilwiz/crucialnet/the-archives/2019/01/05/index.html -/home/rushilwiz/crucialnet/the-archives/2018/12 -/home/rushilwiz/crucialnet/the-archives/2018/12/22 -/home/rushilwiz/crucialnet/the-archives/2018/12/22/index.html -/home/rushilwiz/crucialnet/js/main.js -/home/rushilwiz/crucialnet/404/style.css -/home/rushilwiz/crucialnet/404/index.html -/home/rushilwiz/crucialnet/contact-me/site.webmanifest -/home/rushilwiz/crucialnet/contact-me/js -/home/rushilwiz/crucialnet/contact-me/browserconfig.xml -/home/rushilwiz/crucialnet/contact-me/index.html -/home/rushilwiz/crucialnet/contact-me/css -/home/rushilwiz/crucialnet/contact-me/js/main.js -/home/rushilwiz/crucialnet/contact-me/css/style.css -/home/rushilwiz/crucialnet/contact-me/css/fonts -/home/rushilwiz/crucialnet/contact-me/css/fonts/Gotham-Bold.otf -/home/rushilwiz/crucialnet/contact-me/css/fonts/Sans-Thin.otf -/home/rushilwiz/crucialnet/css/style.css -/home/rushilwiz/crucialnet/css/res -/home/rushilwiz/crucialnet/css/fonts -/home/rushilwiz/crucialnet/css/fonts/Gotham-Bold.otf -/home/rushilwiz/crucialnet/css/fonts/Proxima Nova Alt Light.otf -/home/rushilwiz/crucialnet/css/fonts/Sans-Thin.otf -/home/rushilwiz/crucialnet/css/fonts/futura-pt-light.otf -/home/rushilwiz/brancher/login.html -/home/rushilwiz/brancher/js -/home/rushilwiz/brancher/404 -/home/rushilwiz/brancher/sliders.html -/home/rushilwiz/brancher/index.html -/home/rushilwiz/brancher/README.md -/home/rushilwiz/brancher/css -/home/rushilwiz/brancher/under_construction -/home/rushilwiz/brancher/index2.html -/home/rushilwiz/brancher/login2.html -/home/rushilwiz/brancher/js/login.js -/home/rushilwiz/brancher/js/main.js -/home/rushilwiz/brancher/404/style.css -/home/rushilwiz/brancher/404/index.html -/home/rushilwiz/brancher/css/styles.css.map -/home/rushilwiz/brancher/css/styles.scss -/home/rushilwiz/brancher/css/res -/home/rushilwiz/brancher/css/styles.css -/home/rushilwiz/brancher/css/fonts -/home/rushilwiz/brancher/css/login.css -/home/rushilwiz/brancher/css/fonts/Gotham-Bold.otf -/home/rushilwiz/brancher/css/fonts/Sans-Thin.otf -/home/rushilwiz/brancher/css/fonts/Coves Light.otf -/home/rushilwiz/brancher/css/fonts/futura-pt-light.otf -/home/rushilwiz/brancher/under_construction/js -/home/rushilwiz/brancher/under_construction/index.html -/home/rushilwiz/brancher/under_construction/css -/home/rushilwiz/brancher/under_construction/js/index.js -/home/rushilwiz/brancher/under_construction/css/styles.css diff --git a/bgservice/SkoolOS/logs/skoolos_06162020-211153 b/bgservice/SkoolOS/logs/skoolos_06162020-211153 deleted file mode 100644 index 1203bb6..0000000 --- a/bgservice/SkoolOS/logs/skoolos_06162020-211153 +++ /dev/null @@ -1,27224 +0,0 @@ -Start time: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:56 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:57 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:58 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Created file -Event Path: /home/rushilwiz/lmao.txt -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/lmao.txt -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Wrote to a file -Event Path: /home/rushilwiz/lmao.txt -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/.Xauthority -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/kdeglobals -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/baloofilerc -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/kdeglobals -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/baloofilerc -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/.local/share/baloo/index-lock -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/.local/share/baloo/index -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:11:59 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/lmao.txt -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:00 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.local/share/baloo/index -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.local/share/baloo/index-lock -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:01 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/.config/discord/tray-unread.png -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Deleted file -Event Path: /home/rushilwiz/lmao.txt -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:02 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Created file -Event Path: /home/rushilwiz/.config/Caprine/.org.chromium.Chromium.K4qgIe -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/.config/Caprine/.org.chromium.Chromium.K4qgIe -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.config/Caprine/.org.chromium.Chromium.K4qgIe -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/.config/Caprine/.org.chromium.Chromium.K4qgIe -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:03 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Wrote to a file -Event Path: /home/rushilwiz/.config/Caprine/.org.chromium.Chromium.K4qgIe -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Moved a file out -Event Path: /home/rushilwiz/.config/Caprine/.org.chromium.Chromium.K4qgIe -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Moved a file in -Event Path: /home/rushilwiz/.config/Caprine/TransportSecurity -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.git/info/exclude -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/.gitignore -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/docs/source/_templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/chromedriver -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/CLI -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/api/migrations -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/static/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/users/templates/users -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/config -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -Event: Opened file -Event Path: /home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -Timestamp: Tuesday, June 16, 2020 21:12:04 - -End time: Tuesday, June 16, 2020 21:12:05 - -Total work time: 00:00:11 - -109 suspicious commands found: -git migrate -git status -git add . -git commit -m "Creates Student/Teacher on User creation" -git pull -git push -git push -git push -git push -git push -git add . -git status -git commit -m "Basic interface created" -git pull -wget -P . https://github.com/shvchk/fallout-grub-theme/raw/master/install.sh -git status -git add . -git pull -git commit -m "Changed Teacher/Class models" -git pull -git pull -git status -nano .gitignore -git status -nano .gitignore -git status -git add . -git commit -m "Fixed some files that broke over merge" -git push -git status -git commit -m "Updated class model and created class detail view" -git add . -git commit -m "Updated class model and created class detail view" -git pull -git pull -git status -git commit -m "fixed student" -git add . -git commit -m "fixed student" -git push -git push -git status -git add . -git commit -m "Added profile view and class detail" -git pull -git pull -git status -git add requirements.txt -git commit -m "removed bad deps" -git pull -git push -git status -git add Website/skoolos/views.py -git commit -m "added teacher support" -git pull -git stash Website/api/models.py -git stash save Website/api/models.py -git pull -git push -git push -git push -git stash list -git stash apply -git stash apply -git stash apply -git pull -git status -git@gitlab.tjhsst.edu:understudyathon-2020/group-1/skoolos.git -git clone git@gitlab.tjhsst.edu:understudyathon-2020/group-1/skoolos.git -git pull -git status -git pull --rebase -git status -git status -git commit -m "chilled the dependencies" -git add . -git commit -m "chilled the dependencies" -git pull --rebase -git push -git status -git status -git add . -git commit -m "started ReadTheDocs" -git pull -git pull -git status -git push -git status -git commit -m "removed theme in conf" -git add . -git commit -m "removed theme in conf" -git pull -git push -git push -git remote -v -git git remote -v -git remote -v -git remote set-url origin https://github.com/rushilwiz/SkoolOS -git remote -v -git pull -git status -git add . -git commit -m "remade sphinx w/ source and build seperate -git pull -git push -git add . -git status -git commit -m "created initial files for docs -git pull - - --------------------------------------------------- - - -WARNING: One or more file did not have file extensions that are acceptable. -The paths to these files are listed below: - -/home/rushilwiz/ion -/home/rushilwiz/ctf -/home/rushilwiz/Music -/home/rushilwiz/Projects -/home/rushilwiz/Pictures -/home/rushilwiz/SkoolOS -/home/rushilwiz/Templates -/home/rushilwiz/id_gitlab.pub -/home/rushilwiz/Downloads -/home/rushilwiz/idafree-7.0 -/home/rushilwiz/Public -/home/rushilwiz/Documents -/home/rushilwiz/id_gitlab -/home/rushilwiz/VirtualBox VMs -/home/rushilwiz/crucialnet -/home/rushilwiz/webserver.pub -/home/rushilwiz/Desktop -/home/rushilwiz/webserver -/home/rushilwiz/Videos -/home/rushilwiz/brancher -/home/rushilwiz/ion/migrations -/home/rushilwiz/ion/Ion.egg-info -/home/rushilwiz/ion/setup.py -/home/rushilwiz/ion/SECURITY.md -/home/rushilwiz/ion/manage.py -/home/rushilwiz/ion/CONTRIBUTING.md -/home/rushilwiz/ion/docs -/home/rushilwiz/ion/Vagrantfile -/home/rushilwiz/ion/fabfile.py -/home/rushilwiz/ion/deploy -/home/rushilwiz/ion/intranet -/home/rushilwiz/ion/cron -/home/rushilwiz/ion/COPYING -/home/rushilwiz/ion/pyproject.toml -/home/rushilwiz/ion/scripts -/home/rushilwiz/ion/README.rst -/home/rushilwiz/ion/config -/home/rushilwiz/ion/migrations/__init__.py -/home/rushilwiz/ion/Ion.egg-info/PKG-INFO -/home/rushilwiz/ion/docs/setup -/home/rushilwiz/ion/docs/administration -/home/rushilwiz/ion/docs/_static -/home/rushilwiz/ion/docs/_ext -/home/rushilwiz/ion/docs/developing -/home/rushilwiz/ion/docs/architecture -/home/rushilwiz/ion/docs/_templates -/home/rushilwiz/ion/docs/sourcedoc -/home/rushilwiz/ion/docs/conf.py -/home/rushilwiz/ion/docs/index.rst -/home/rushilwiz/ion/docs/setup/vagrant.rst -/home/rushilwiz/ion/docs/setup/postinstall.rst -/home/rushilwiz/ion/docs/setup/server.rst -/home/rushilwiz/ion/docs/setup/index.rst -/home/rushilwiz/ion/docs/administration/index.rst -/home/rushilwiz/ion/docs/_static/custom.css -/home/rushilwiz/ion/docs/_ext/djangodocs.py -/home/rushilwiz/ion/docs/developing/eighth-models.rst -/home/rushilwiz/ion/docs/developing/howto.rst -/home/rushilwiz/ion/docs/developing/updates.rst -/home/rushilwiz/ion/docs/developing/oauth.rst -/home/rushilwiz/ion/docs/developing/styleguide.rst -/home/rushilwiz/ion/docs/developing/requirements.rst -/home/rushilwiz/ion/docs/developing/testing.rst -/home/rushilwiz/ion/docs/developing/index.rst -/home/rushilwiz/ion/docs/architecture/index.rst -/home/rushilwiz/ion/docs/_templates/relations.html -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.views.admin.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.views.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dashboard.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.preferences.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.welcome.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.lostfound.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.oauth.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.signage.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dataimport.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.schedule.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.features.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.itemreg.templatetags.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.polls.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.files.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.seniors.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.feedback.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.api.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.announcements.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.auth.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.seniors.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.emerg.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.forms.admin.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.signage.templatetags.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.sessionmgmt.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.schedule.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.bus.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.error.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.auth.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.seniors.rst -/home/rushilwiz/ion/docs/sourcedoc/modules.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.nomination.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.notifications.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.schedule.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.test.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.itemreg.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.emailfwd.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.groups.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.settings.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.events.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.search.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.forms.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.eighth.management.commands.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.printing.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.middleware.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.templatetags.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.parking.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dataimport.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.dataimport.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.users.templatetags.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.apps.auth.management.rst -/home/rushilwiz/ion/docs/sourcedoc/intranet.utils.rst -/home/rushilwiz/ion/intranet/wsgi.py -/home/rushilwiz/ion/intranet/celery.py -/home/rushilwiz/ion/intranet/__init__.py -/home/rushilwiz/ion/intranet/settings -/home/rushilwiz/ion/intranet/routing.py -/home/rushilwiz/ion/intranet/utils -/home/rushilwiz/ion/intranet/middleware -/home/rushilwiz/ion/intranet/test -/home/rushilwiz/ion/intranet/apps -/home/rushilwiz/ion/intranet/static -/home/rushilwiz/ion/intranet/asgi.py -/home/rushilwiz/ion/intranet/urls.py -/home/rushilwiz/ion/intranet/templates -/home/rushilwiz/ion/intranet/settings/__init__.py -/home/rushilwiz/ion/intranet/settings/secret.sample -/home/rushilwiz/ion/intranet/settings/travis_secret.py -/home/rushilwiz/ion/intranet/utils/__init__.py -/home/rushilwiz/ion/intranet/utils/helpers.py -/home/rushilwiz/ion/intranet/utils/date.py -/home/rushilwiz/ion/intranet/utils/serialization.py -/home/rushilwiz/ion/intranet/utils/locking.py -/home/rushilwiz/ion/intranet/utils/admin_helpers.py -/home/rushilwiz/ion/intranet/utils/deletion.py -/home/rushilwiz/ion/intranet/utils/cache.py -/home/rushilwiz/ion/intranet/utils/html.py -/home/rushilwiz/ion/intranet/utils/session.py -/home/rushilwiz/ion/intranet/middleware/__init__.py -/home/rushilwiz/ion/intranet/middleware/session_management.py -/home/rushilwiz/ion/intranet/middleware/threadlocals.py -/home/rushilwiz/ion/intranet/middleware/monitoring.py -/home/rushilwiz/ion/intranet/middleware/dark_mode.py -/home/rushilwiz/ion/intranet/middleware/templates.py -/home/rushilwiz/ion/intranet/middleware/profiler.py -/home/rushilwiz/ion/intranet/middleware/traceback.py -/home/rushilwiz/ion/intranet/middleware/access_log.py -/home/rushilwiz/ion/intranet/middleware/url_slashes.py -/home/rushilwiz/ion/intranet/middleware/ajax.py -/home/rushilwiz/ion/intranet/middleware/same_origin.py -/home/rushilwiz/ion/intranet/test/__init__.py -/home/rushilwiz/ion/intranet/test/data -/home/rushilwiz/ion/intranet/test/ion_test.py -/home/rushilwiz/ion/intranet/test/stubs -/home/rushilwiz/ion/intranet/test/test_suite.py -/home/rushilwiz/ion/intranet/test/data/awilliam.json -/home/rushilwiz/ion/intranet/test/stubs/wsgiref -/home/rushilwiz/ion/intranet/test/stubs/requests_oauthlib.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3 -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider -/home/rushilwiz/ion/intranet/test/stubs/pip -/home/rushilwiz/ion/intranet/test/stubs/simple_history -/home/rushilwiz/ion/intranet/test/stubs/ldap_test.pyi -/home/rushilwiz/ion/intranet/test/stubs/dateutil -/home/rushilwiz/ion/intranet/test/stubs/cacheops.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric -/home/rushilwiz/ion/intranet/test/stubs/corsheaders -/home/rushilwiz/ion/intranet/test/stubs/formtools -/home/rushilwiz/ion/intranet/test/stubs/reportlab -/home/rushilwiz/ion/intranet/test/stubs/maintenancemode -/home/rushilwiz/ion/intranet/test/stubs/paramiko -/home/rushilwiz/ion/intranet/test/stubs/icalendar.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest -/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar -/home/rushilwiz/ion/intranet/test/stubs/django -/home/rushilwiz/ion/intranet/test/stubs/pexpect.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework -/home/rushilwiz/ion/intranet/test/stubs/raven -/home/rushilwiz/ion/intranet/test/stubs/pstats.pyi -/home/rushilwiz/ion/intranet/test/stubs/magic.pyi -/home/rushilwiz/ion/intranet/test/stubs/pysftp.pyi -/home/rushilwiz/ion/intranet/test/stubs/bleach -/home/rushilwiz/ion/intranet/test/stubs/Crypto -/home/rushilwiz/ion/intranet/test/stubs/cProfile.pyi -/home/rushilwiz/ion/intranet/test/stubs/gssapi.pyi -/home/rushilwiz/ion/intranet/test/stubs/setuptools -/home/rushilwiz/ion/intranet/test/stubs/wsgiref/util.pyi -/home/rushilwiz/ion/intranet/test/stubs/wsgiref/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils -/home/rushilwiz/ion/intranet/test/stubs/ldap3/protocol -/home/rushilwiz/ion/intranet/test/stubs/ldap3/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/core -/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils/conv.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils/dn.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/utils/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/protocol/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/protocol/sasl.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/core/exceptions.pyi -/home/rushilwiz/ion/intranet/test/stubs/ldap3/core/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/settings.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/views -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/models.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/middleware.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/views/application.pyi -/home/rushilwiz/ion/intranet/test/stubs/oauth2_provider/views/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/pip/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/pip/download.pyi -/home/rushilwiz/ion/intranet/test/stubs/pip/req -/home/rushilwiz/ion/intranet/test/stubs/pip/req/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/pip/req/req_file.pyi -/home/rushilwiz/ion/intranet/test/stubs/simple_history/admin.pyi -/home/rushilwiz/ion/intranet/test/stubs/simple_history/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/simple_history/models.pyi -/home/rushilwiz/ion/intranet/test/stubs/simple_history/middleware.pyi -/home/rushilwiz/ion/intranet/test/stubs/dateutil/relativedelta.pyi -/home/rushilwiz/ion/intranet/test/stubs/dateutil/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/contrib -/home/rushilwiz/ion/intranet/test/stubs/fabric/api.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/context_managers.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/operations.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/state.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/contrib/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/fabric/contrib/console.pyi -/home/rushilwiz/ion/intranet/test/stubs/corsheaders/defaults.pyi -/home/rushilwiz/ion/intranet/test/stubs/corsheaders/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/corsheaders/middleware.pyi -/home/rushilwiz/ion/intranet/test/stubs/formtools/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/formtools/wizard -/home/rushilwiz/ion/intranet/test/stubs/formtools/wizard/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/formtools/wizard/views.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/platypus.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib -/home/rushilwiz/ion/intranet/test/stubs/reportlab/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/units.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/enums.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/styles.pyi -/home/rushilwiz/ion/intranet/test/stubs/reportlab/lib/pagesizes.pyi -/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/conf.pyi -/home/rushilwiz/ion/intranet/test/stubs/maintenancemode/middleware.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_si.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/rsakey.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/config.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/proxy.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_handle.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/dsskey.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/ssh_exception.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_attr.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/server.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/transport.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/util.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/common.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/agent.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/file.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_client.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/client.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_file.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/pkey.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/hostkeys.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/sftp_server.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/message.pyi -/home/rushilwiz/ion/intranet/test/stubs/paramiko/channel.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/mock.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/util.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/runner.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/result.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/suite.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/signals.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/loader.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/case.pyi -/home/rushilwiz/ion/intranet/test/stubs/unittest/main.pyi -/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar/settings.pyi -/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/debug_toolbar/middleware.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib -/home/rushilwiz/ion/intranet/test/stubs/django/shortcuts.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/dispatch.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/template -/home/rushilwiz/ion/intranet/test/stubs/django/utils -/home/rushilwiz/ion/intranet/test/stubs/django/views -/home/rushilwiz/ion/intranet/test/stubs/django/urls -/home/rushilwiz/ion/intranet/test/stubs/django/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/test -/home/rushilwiz/ion/intranet/test/stubs/django/apps -/home/rushilwiz/ion/intranet/test/stubs/django/conf -/home/rushilwiz/ion/intranet/test/stubs/django/core -/home/rushilwiz/ion/intranet/test/stubs/django/forms -/home/rushilwiz/ion/intranet/test/stubs/django/http.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db -/home/rushilwiz/ion/intranet/test/stubs/django/templatetags -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/messages.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/admin -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/forms.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/hashers.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/models.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/auth/decorators.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/admin/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/contrib/admin/site.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/template/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/template/loader.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/log.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/functional.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/tree.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/translation -/home/rushilwiz/ion/intranet/test/stubs/django/utils/safestring.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/formats.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/decorators.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/deprecation.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/encoding.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/text.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/http.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/html.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/timezone.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/utils/translation/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators -/home/rushilwiz/ion/intranet/test/stubs/django/views/generic -/home/rushilwiz/ion/intranet/test/stubs/django/views/debug.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/csrf.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/debug.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/clickjacking.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/decorators/http.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/generic/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/views/generic/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/urls/exceptions.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/urls/resolvers.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/urls/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/urls/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/urls/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/test/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/test/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/apps/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/apps/apps.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/conf/settings.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/conf/urls.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/conf/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/serializers -/home/rushilwiz/ion/intranet/test/stubs/django/core/files -/home/rushilwiz/ion/intranet/test/stubs/django/core/exceptions.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/mail.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/management -/home/rushilwiz/ion/intranet/test/stubs/django/core/paginator.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/wsgi.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/signing.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/signals.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache -/home/rushilwiz/ion/intranet/test/stubs/django/core/handlers -/home/rushilwiz/ion/intranet/test/stubs/django/core/urlresolvers.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/validators.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/serializers/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/files/images.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/files/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/files/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/files/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/management/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/management/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/cache/backends/dummy.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/handlers/wsgi.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/core/handlers/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/formsets.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/widgets.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/forms.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/boundfield.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/models.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/forms/fields.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/migrations.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/backends -/home/rushilwiz/ion/intranet/test/stubs/django/db/models -/home/rushilwiz/ion/intranet/test/stubs/django/db/transaction.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/connections.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/backends/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/backends/utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/lookups.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/expressions.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/aggregates.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/base.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/query_utils.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/manager.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/query.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/deletion.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/related_descriptors.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/reverse_related.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/files.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/related_lookups.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/db/models/fields/related.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/templatetags/static.pyi -/home/rushilwiz/ion/intranet/test/stubs/django/templatetags/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/response.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/permissions.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/serializers.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/exceptions.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/renderers.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/reverse.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/generics.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/status.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/decorators.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/views.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/authentication.pyi -/home/rushilwiz/ion/intranet/test/stubs/rest_framework/pagination.pyi -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib -/home/rushilwiz/ion/intranet/test/stubs/raven/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/raven_compat -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/raven_compat/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/raven/contrib/django/raven_compat/models.pyi -/home/rushilwiz/ion/intranet/test/stubs/bleach/sanitizer.pyi -/home/rushilwiz/ion/intranet/test/stubs/bleach/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/Crypto/Cipher.pyi -/home/rushilwiz/ion/intranet/test/stubs/Crypto/__init__.pyi -/home/rushilwiz/ion/intranet/test/stubs/setuptools/__init__.pyi -/home/rushilwiz/ion/intranet/apps/error -/home/rushilwiz/ion/intranet/apps/search -/home/rushilwiz/ion/intranet/apps/__init__.py -/home/rushilwiz/ion/intranet/apps/api -/home/rushilwiz/ion/intranet/apps/notifications -/home/rushilwiz/ion/intranet/apps/auth -/home/rushilwiz/ion/intranet/apps/users -/home/rushilwiz/ion/intranet/apps/lostfound -/home/rushilwiz/ion/intranet/apps/events -/home/rushilwiz/ion/intranet/apps/eighth -/home/rushilwiz/ion/intranet/apps/files -/home/rushilwiz/ion/intranet/apps/itemreg -/home/rushilwiz/ion/intranet/apps/oauth -/home/rushilwiz/ion/intranet/apps/polls -/home/rushilwiz/ion/intranet/apps/seniors -/home/rushilwiz/ion/intranet/apps/context_processors.py -/home/rushilwiz/ion/intranet/apps/bus -/home/rushilwiz/ion/intranet/apps/signage -/home/rushilwiz/ion/intranet/apps/dataimport -/home/rushilwiz/ion/intranet/apps/schedule -/home/rushilwiz/ion/intranet/apps/welcome -/home/rushilwiz/ion/intranet/apps/nomination -/home/rushilwiz/ion/intranet/apps/groups -/home/rushilwiz/ion/intranet/apps/feedback -/home/rushilwiz/ion/intranet/apps/parking -/home/rushilwiz/ion/intranet/apps/dashboard -/home/rushilwiz/ion/intranet/apps/announcements -/home/rushilwiz/ion/intranet/apps/emerg -/home/rushilwiz/ion/intranet/apps/features -/home/rushilwiz/ion/intranet/apps/sessionmgmt -/home/rushilwiz/ion/intranet/apps/emailfwd -/home/rushilwiz/ion/intranet/apps/templatetags -/home/rushilwiz/ion/intranet/apps/preferences -/home/rushilwiz/ion/intranet/apps/printing -/home/rushilwiz/ion/intranet/apps/error/__init__.py -/home/rushilwiz/ion/intranet/apps/error/tests.py -/home/rushilwiz/ion/intranet/apps/error/views.py -/home/rushilwiz/ion/intranet/apps/search/__init__.py -/home/rushilwiz/ion/intranet/apps/search/views.py -/home/rushilwiz/ion/intranet/apps/search/utils.py -/home/rushilwiz/ion/intranet/apps/search/urls.py -/home/rushilwiz/ion/intranet/apps/api/__init__.py -/home/rushilwiz/ion/intranet/apps/api/tests.py -/home/rushilwiz/ion/intranet/apps/api/views.py -/home/rushilwiz/ion/intranet/apps/api/authentication.py -/home/rushilwiz/ion/intranet/apps/api/utils.py -/home/rushilwiz/ion/intranet/apps/api/urls.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations -/home/rushilwiz/ion/intranet/apps/notifications/__init__.py -/home/rushilwiz/ion/intranet/apps/notifications/tasks.py -/home/rushilwiz/ion/intranet/apps/notifications/models.py -/home/rushilwiz/ion/intranet/apps/notifications/views.py -/home/rushilwiz/ion/intranet/apps/notifications/urls.py -/home/rushilwiz/ion/intranet/apps/notifications/emails.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0002_auto_20150729_1734.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0003_gcmnotification.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0005_auto_20151221_2008.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0007_auto_20151221_2259.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0006_auto_20151221_2028.py -/home/rushilwiz/ion/intranet/apps/notifications/migrations/0004_notificationconfig_android_gcm_optout.py -/home/rushilwiz/ion/intranet/apps/auth/__init__.py -/home/rushilwiz/ion/intranet/apps/auth/decorators.py -/home/rushilwiz/ion/intranet/apps/auth/tests.py -/home/rushilwiz/ion/intranet/apps/auth/apps.py -/home/rushilwiz/ion/intranet/apps/auth/backends.py -/home/rushilwiz/ion/intranet/apps/auth/helpers.py -/home/rushilwiz/ion/intranet/apps/auth/management -/home/rushilwiz/ion/intranet/apps/auth/views.py -/home/rushilwiz/ion/intranet/apps/auth/forms.py -/home/rushilwiz/ion/intranet/apps/auth/signals.py -/home/rushilwiz/ion/intranet/apps/auth/rest_permissions.py -/home/rushilwiz/ion/intranet/apps/auth/urls.py -/home/rushilwiz/ion/intranet/apps/auth/management/__init__.py -/home/rushilwiz/ion/intranet/apps/auth/management/commands -/home/rushilwiz/ion/intranet/apps/auth/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/auth/management/commands/grant_admin.py -/home/rushilwiz/ion/intranet/apps/users/migrations -/home/rushilwiz/ion/intranet/apps/users/__init__.py -/home/rushilwiz/ion/intranet/apps/users/serializers.py -/home/rushilwiz/ion/intranet/apps/users/tests.py -/home/rushilwiz/ion/intranet/apps/users/models.py -/home/rushilwiz/ion/intranet/apps/users/renderers.py -/home/rushilwiz/ion/intranet/apps/users/admin.py -/home/rushilwiz/ion/intranet/apps/users/management -/home/rushilwiz/ion/intranet/apps/users/views.py -/home/rushilwiz/ion/intranet/apps/users/forms.py -/home/rushilwiz/ion/intranet/apps/users/templatetags -/home/rushilwiz/ion/intranet/apps/users/urls.py -/home/rushilwiz/ion/intranet/apps/users/courses_urls.py -/home/rushilwiz/ion/intranet/apps/users/api.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0016_auto_20170802_1355.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0023_auto_20170806_2123.py -/home/rushilwiz/ion/intranet/apps/users/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0021_remove_user_grade_number.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0013_auto_20161016_1525.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0003_merge.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0019_auto_20170803_1342.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0006_user_seen_welcome.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0002_auto_20150404_1622.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0032_userdarkmodeproperties.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0018_user_title.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0002_auto_20150402_1847.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0007_user_receive_schedule_notifications.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0005_user_first_login.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0020_auto_20170803_1344.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0004_auto_20150717_0904.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0027_auto_20170824_1314.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0029_auto_20170825_1610.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0017_auto_20170802_1357.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0026_auto_20170824_1256.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0028_auto_20170824_1644.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0031_auto_20190715_1259.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0008_user__student_id.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0009_user_user_locked.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0010_auto_20161016_1343.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0025_auto_20170823_1354.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0015_auto_20170731_1057.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0030_merge_20171231_2209.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0015_user_bus_route.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0034_remove_userdarkmodeproperties__dark_mode_unlocked.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0011_auto_20161016_1503.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0014_auto_20161017_2114.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0033_user_last_global_logout_time.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0012_auto_20161016_1510.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0024_auto_20170817_1511.py -/home/rushilwiz/ion/intranet/apps/users/migrations/0022_auto_20170805_1558.py -/home/rushilwiz/ion/intranet/apps/users/management/__init__.py -/home/rushilwiz/ion/intranet/apps/users/management/commands -/home/rushilwiz/ion/intranet/apps/users/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/users/management/commands/lock.py -/home/rushilwiz/ion/intranet/apps/users/management/commands/import_groups.py -/home/rushilwiz/ion/intranet/apps/users/templatetags/users.py -/home/rushilwiz/ion/intranet/apps/users/templatetags/__init__.py -/home/rushilwiz/ion/intranet/apps/users/templatetags/phone_numbers.py -/home/rushilwiz/ion/intranet/apps/users/templatetags/grades.py -/home/rushilwiz/ion/intranet/apps/lostfound/migrations -/home/rushilwiz/ion/intranet/apps/lostfound/__init__.py -/home/rushilwiz/ion/intranet/apps/lostfound/models.py -/home/rushilwiz/ion/intranet/apps/lostfound/apps.py -/home/rushilwiz/ion/intranet/apps/lostfound/admin.py -/home/rushilwiz/ion/intranet/apps/lostfound/views.py -/home/rushilwiz/ion/intranet/apps/lostfound/forms.py -/home/rushilwiz/ion/intranet/apps/lostfound/urls.py -/home/rushilwiz/ion/intranet/apps/lostfound/migrations/0002_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/lostfound/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/lostfound/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/events/migrations -/home/rushilwiz/ion/intranet/apps/events/__init__.py -/home/rushilwiz/ion/intranet/apps/events/tests.py -/home/rushilwiz/ion/intranet/apps/events/models.py -/home/rushilwiz/ion/intranet/apps/events/admin.py -/home/rushilwiz/ion/intranet/apps/events/views.py -/home/rushilwiz/ion/intranet/apps/events/forms.py -/home/rushilwiz/ion/intranet/apps/events/notifications.py -/home/rushilwiz/ion/intranet/apps/events/urls.py -/home/rushilwiz/ion/intranet/apps/events/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0011_auto_20150913_1427.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0017_auto_20160323_2305.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0002_auto_20150623_1452.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0024_auto_20170307_2037_squashed_0025_auto_20170307_2040.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0023_event_category.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0005_event_time.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0012_auto_20150913_1433.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0003_link_title.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0019_tjstaruuidmap.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0015_auto_20151130_1427.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0004_remove_event_time.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0009_auto_20150903_1138.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0022_event_public.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0006_auto_20150623_1615.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0021_auto_20161004_2034.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0025_event_open_to.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0014_event_show_attending.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0010_auto_20150911_2148.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0008_event_attending.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0007_auto_20150628_1227.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0016_auto_20160323_2118.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0013_auto_20150913_1433.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0018_event_show_on_dashboard.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0020_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/events/migrations/0026_auto_20170307_2258.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations -/home/rushilwiz/ion/intranet/apps/eighth/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/serializers.py -/home/rushilwiz/ion/intranet/apps/eighth/tests.py -/home/rushilwiz/ion/intranet/apps/eighth/tasks.py -/home/rushilwiz/ion/intranet/apps/eighth/models.py -/home/rushilwiz/ion/intranet/apps/eighth/admin.py -/home/rushilwiz/ion/intranet/apps/eighth/views -/home/rushilwiz/ion/intranet/apps/eighth/context_processors.py -/home/rushilwiz/ion/intranet/apps/eighth/management -/home/rushilwiz/ion/intranet/apps/eighth/forms -/home/rushilwiz/ion/intranet/apps/eighth/exceptions.py -/home/rushilwiz/ion/intranet/apps/eighth/utils.py -/home/rushilwiz/ion/intranet/apps/eighth/notifications.py -/home/rushilwiz/ion/intranet/apps/eighth/urls.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0046_auto_20161004_2140.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0030_remove_eighthactivity_aid.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0058_auto_20171117_1724.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0005_auto_20150318_1243.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0051_auto_20170203_1310.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0059_auto_20180726_1739.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0029_auto_20150829_2335.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0011_eighthsignup_absence_acknowledged.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0052_auto_20170329_1258.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0006_auto_20150318_1246.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0040_auto_20160515_1851.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0048_auto_20161006_2137.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0028_historicaleighthactivity.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0023_auto_20150530_0026.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0035_eighthactivity_blacklist.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0016_auto_20150526_0930.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0043_auto_20160926_2206.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0003_auto_20150317_0947.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0049_auto_20170106_1007.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0039_auto_20160322_1013.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0038_merge.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0010_eighthscheduledactivity_admin_comments.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0007_auto_20150318_1249.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0055_auto_20171003_2201.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0009_eighthactivity_favorites.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0022_schedactivity_comments_to_title.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0033_eighthactivity_default_capacity.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0054_auto_20170706_1043.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0042_auto_20160829_1242.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0013_auto_20150523_1233.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0020_eighthblock_override_blocks.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0061_auto_20191215_2222.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0034_eighthscheduledactivity_special.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0037_auto_20160307_2342.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0004_auto_20150317_1003.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0025_eighthblock_time.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0050_eighthwaitlist_block.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0041_auto_20160828_2052.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0014_eighthsponsor_show_full_name.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0036_eighthscheduledactivity_administrative.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0057_auto_20171005_2135.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0015_auto_20150523_1300.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0026_auto_20150714_0914.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0029_auto_20150724_1530.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0031_eighthsignup_absence_emailed.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0045_auto_20161004_2135.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0053_auto_20170518_1458.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0024_eighthactivity_aid.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0019_auto_20150528_0015.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0027_eighthblock_comments.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0060_auto_20180726_1815.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0062_auto_20200116_1926.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0047_auto_20161005_0655.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0036_merge.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0002_auto_20150317_0934.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0056_eighthactivitysimilarity_true_count.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0018_auto_20150527_2333.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0044_auto_20161004_2034.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0032_auto_20151118_0106.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0012_eighthactivity_administrative.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0017_auto_20150526_0933.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0008_auto_20150318_1305.py -/home/rushilwiz/ion/intranet/apps/eighth/migrations/0021_auto_20150529_2219.py -/home/rushilwiz/ion/intranet/apps/eighth/views/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/views/routers.py -/home/rushilwiz/ion/intranet/apps/eighth/views/signup.py -/home/rushilwiz/ion/intranet/apps/eighth/views/profile.py -/home/rushilwiz/ion/intranet/apps/eighth/views/activities.py -/home/rushilwiz/ion/intranet/apps/eighth/views/monitoring.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin -/home/rushilwiz/ion/intranet/apps/eighth/views/attendance.py -/home/rushilwiz/ion/intranet/apps/eighth/views/api.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/users.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/maintenance.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/groups.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/sponsors.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/activities.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/general.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/blocks.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/rooms.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/attendance.py -/home/rushilwiz/ion/intranet/apps/eighth/views/admin/scheduling.py -/home/rushilwiz/ion/intranet/apps/eighth/management/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/delete_duplicate_signups.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/generate_similarities.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/signup_status_email.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/find_duplicates.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/absence_email.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/remove_withdrawn_students.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/generate_statistics.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/dev_create_blocks.py -/home/rushilwiz/ion/intranet/apps/eighth/management/commands/update_counselors.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/__init__.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/groups.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/sponsors.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/activities.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/general.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/blocks.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/rooms.py -/home/rushilwiz/ion/intranet/apps/eighth/forms/admin/scheduling.py -/home/rushilwiz/ion/intranet/apps/files/migrations -/home/rushilwiz/ion/intranet/apps/files/__init__.py -/home/rushilwiz/ion/intranet/apps/files/tests.py -/home/rushilwiz/ion/intranet/apps/files/models.py -/home/rushilwiz/ion/intranet/apps/files/views.py -/home/rushilwiz/ion/intranet/apps/files/forms.py -/home/rushilwiz/ion/intranet/apps/files/urls.py -/home/rushilwiz/ion/intranet/apps/files/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/files/migrations/0004_host_visible_to_all.py -/home/rushilwiz/ion/intranet/apps/files/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/files/migrations/0002_auto_20150808_2134.py -/home/rushilwiz/ion/intranet/apps/files/migrations/0005_auto_20151109_2139.py -/home/rushilwiz/ion/intranet/apps/files/migrations/0003_auto_20150809_0057.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations -/home/rushilwiz/ion/intranet/apps/itemreg/__init__.py -/home/rushilwiz/ion/intranet/apps/itemreg/models.py -/home/rushilwiz/ion/intranet/apps/itemreg/apps.py -/home/rushilwiz/ion/intranet/apps/itemreg/admin.py -/home/rushilwiz/ion/intranet/apps/itemreg/views.py -/home/rushilwiz/ion/intranet/apps/itemreg/forms.py -/home/rushilwiz/ion/intranet/apps/itemreg/templatetags -/home/rushilwiz/ion/intranet/apps/itemreg/urls.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0005_auto_20160410_2146.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0007_auto_20160413_1929.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0004_auto_20160410_2144.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0003_auto_20160409_2240.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0008_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0009_auto_20180524_2221.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0006_auto_20160410_2215.py -/home/rushilwiz/ion/intranet/apps/itemreg/migrations/0002_auto_20160409_2157.py -/home/rushilwiz/ion/intranet/apps/itemreg/templatetags/__init__.py -/home/rushilwiz/ion/intranet/apps/itemreg/templatetags/texthighlight.py -/home/rushilwiz/ion/intranet/apps/oauth/migrations -/home/rushilwiz/ion/intranet/apps/oauth/__init__.py -/home/rushilwiz/ion/intranet/apps/oauth/tests.py -/home/rushilwiz/ion/intranet/apps/oauth/models.py -/home/rushilwiz/ion/intranet/apps/oauth/apps.py -/home/rushilwiz/ion/intranet/apps/oauth/admin.py -/home/rushilwiz/ion/intranet/apps/oauth/views.py -/home/rushilwiz/ion/intranet/apps/oauth/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/polls/migrations -/home/rushilwiz/ion/intranet/apps/polls/__init__.py -/home/rushilwiz/ion/intranet/apps/polls/tests.py -/home/rushilwiz/ion/intranet/apps/polls/models.py -/home/rushilwiz/ion/intranet/apps/polls/admin.py -/home/rushilwiz/ion/intranet/apps/polls/views.py -/home/rushilwiz/ion/intranet/apps/polls/forms.py -/home/rushilwiz/ion/intranet/apps/polls/urls.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0009_auto_20170425_1730.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0002_auto_20151117_1855.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0006_auto_20160112_0101.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0005_question_max_choices.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0004_answer_answer.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0007_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0010_poll_is_secret.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0003_auto_20151117_2139.py -/home/rushilwiz/ion/intranet/apps/polls/migrations/0008_auto_20161212_2355.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations -/home/rushilwiz/ion/intranet/apps/seniors/__init__.py -/home/rushilwiz/ion/intranet/apps/seniors/models.py -/home/rushilwiz/ion/intranet/apps/seniors/admin.py -/home/rushilwiz/ion/intranet/apps/seniors/management -/home/rushilwiz/ion/intranet/apps/seniors/views.py -/home/rushilwiz/ion/intranet/apps/seniors/forms.py -/home/rushilwiz/ion/intranet/apps/seniors/urls.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0007_auto_20151215_2341.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0002_auto_20151130_1459.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0006_auto_20151130_1640.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0005_auto_20151130_1637.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0004_auto_20151130_1634.py -/home/rushilwiz/ion/intranet/apps/seniors/migrations/0003_auto_20151130_1504.py -/home/rushilwiz/ion/intranet/apps/seniors/management/__init__.py -/home/rushilwiz/ion/intranet/apps/seniors/management/commands -/home/rushilwiz/ion/intranet/apps/seniors/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/seniors/management/commands/import_colleges.py -/home/rushilwiz/ion/intranet/apps/bus/migrations -/home/rushilwiz/ion/intranet/apps/bus/__init__.py -/home/rushilwiz/ion/intranet/apps/bus/serializers.py -/home/rushilwiz/ion/intranet/apps/bus/tests.py -/home/rushilwiz/ion/intranet/apps/bus/tasks.py -/home/rushilwiz/ion/intranet/apps/bus/models.py -/home/rushilwiz/ion/intranet/apps/bus/admin.py -/home/rushilwiz/ion/intranet/apps/bus/management -/home/rushilwiz/ion/intranet/apps/bus/views.py -/home/rushilwiz/ion/intranet/apps/bus/consumers.py -/home/rushilwiz/ion/intranet/apps/bus/urls.py -/home/rushilwiz/ion/intranet/apps/bus/api.py -/home/rushilwiz/ion/intranet/apps/bus/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/bus/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/bus/migrations/0002_auto_20170606_1038.py -/home/rushilwiz/ion/intranet/apps/bus/migrations/0004_auto_20180117_1232.py -/home/rushilwiz/ion/intranet/apps/bus/migrations/0003_route_space.py -/home/rushilwiz/ion/intranet/apps/bus/management/commands -/home/rushilwiz/ion/intranet/apps/bus/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/bus/management/commands/import_routes.py -/home/rushilwiz/ion/intranet/apps/bus/management/commands/reset_routes.py -/home/rushilwiz/ion/intranet/apps/signage/migrations -/home/rushilwiz/ion/intranet/apps/signage/__init__.py -/home/rushilwiz/ion/intranet/apps/signage/models.py -/home/rushilwiz/ion/intranet/apps/signage/admin.py -/home/rushilwiz/ion/intranet/apps/signage/views.py -/home/rushilwiz/ion/intranet/apps/signage/pages.py -/home/rushilwiz/ion/intranet/apps/signage/consumers.py -/home/rushilwiz/ion/intranet/apps/signage/templatetags -/home/rushilwiz/ion/intranet/apps/signage/urls.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0017_sign_latest_heartbeat_time.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0007_sign_landscape.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0004_auto_20160212_1121.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0002_auto_20151230_2151.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0013_auto_20180329_1438.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0008_sign_map_location.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0006_sign_zoom.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0009_auto_20180327_1210.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0003_sign_use_frameset.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0005_auto_20160303_1409.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0015_auto_20180422_1714.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0010_auto_20180327_1233.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0016_auto_20191210_1520.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0011_page_sandbox.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0014_page_strip_links.py -/home/rushilwiz/ion/intranet/apps/signage/migrations/0012_auto_20180327_1459.py -/home/rushilwiz/ion/intranet/apps/signage/templatetags/__init__.py -/home/rushilwiz/ion/intranet/apps/signage/templatetags/signage.py -/home/rushilwiz/ion/intranet/apps/dataimport/migrations -/home/rushilwiz/ion/intranet/apps/dataimport/__init__.py -/home/rushilwiz/ion/intranet/apps/dataimport/tests.py -/home/rushilwiz/ion/intranet/apps/dataimport/apps.py -/home/rushilwiz/ion/intranet/apps/dataimport/management -/home/rushilwiz/ion/intranet/apps/dataimport/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/__init__.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/import_eighth.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/year_cleanup.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/import_photos.py -/home/rushilwiz/ion/intranet/apps/dataimport/management/commands/import_users.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations -/home/rushilwiz/ion/intranet/apps/schedule/__init__.py -/home/rushilwiz/ion/intranet/apps/schedule/serializers.py -/home/rushilwiz/ion/intranet/apps/schedule/tests.py -/home/rushilwiz/ion/intranet/apps/schedule/models.py -/home/rushilwiz/ion/intranet/apps/schedule/admin.py -/home/rushilwiz/ion/intranet/apps/schedule/management -/home/rushilwiz/ion/intranet/apps/schedule/views.py -/home/rushilwiz/ion/intranet/apps/schedule/forms.py -/home/rushilwiz/ion/intranet/apps/schedule/notifications.py -/home/rushilwiz/ion/intranet/apps/schedule/urls.py -/home/rushilwiz/ion/intranet/apps/schedule/api.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0006_auto_20150606_2350.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0005_auto_20150606_2122.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0007_auto_20150606_2351.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0002_auto_20150606_2057.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0008_block_order.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0011_day_comment.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0003_auto_20150606_2100.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0009_auto_20150717_0904.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0004_auto_20150606_2116.py -/home/rushilwiz/ion/intranet/apps/schedule/migrations/0010_auto_20150806_1547.py -/home/rushilwiz/ion/intranet/apps/schedule/management/__init__.py -/home/rushilwiz/ion/intranet/apps/schedule/management/commands -/home/rushilwiz/ion/intranet/apps/schedule/management/commands/__init__.py -/home/rushilwiz/ion/intranet/apps/schedule/management/commands/schedule_notify.py -/home/rushilwiz/ion/intranet/apps/welcome/migrations -/home/rushilwiz/ion/intranet/apps/welcome/__init__.py -/home/rushilwiz/ion/intranet/apps/welcome/tests.py -/home/rushilwiz/ion/intranet/apps/welcome/views.py -/home/rushilwiz/ion/intranet/apps/welcome/urls.py -/home/rushilwiz/ion/intranet/apps/welcome/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/nomination/migrations -/home/rushilwiz/ion/intranet/apps/nomination/__init__.py -/home/rushilwiz/ion/intranet/apps/nomination/tests.py -/home/rushilwiz/ion/intranet/apps/nomination/models.py -/home/rushilwiz/ion/intranet/apps/nomination/apps.py -/home/rushilwiz/ion/intranet/apps/nomination/views.py -/home/rushilwiz/ion/intranet/apps/nomination/urls.py -/home/rushilwiz/ion/intranet/apps/nomination/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/nomination/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/nomination/migrations/0002_auto_20160929_2156.py -/home/rushilwiz/ion/intranet/apps/groups/migrations -/home/rushilwiz/ion/intranet/apps/groups/__init__.py -/home/rushilwiz/ion/intranet/apps/groups/tests.py -/home/rushilwiz/ion/intranet/apps/groups/models.py -/home/rushilwiz/ion/intranet/apps/groups/views.py -/home/rushilwiz/ion/intranet/apps/groups/forms.py -/home/rushilwiz/ion/intranet/apps/groups/urls.py -/home/rushilwiz/ion/intranet/apps/groups/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/groups/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/feedback/migrations -/home/rushilwiz/ion/intranet/apps/feedback/__init__.py -/home/rushilwiz/ion/intranet/apps/feedback/tests.py -/home/rushilwiz/ion/intranet/apps/feedback/models.py -/home/rushilwiz/ion/intranet/apps/feedback/admin.py -/home/rushilwiz/ion/intranet/apps/feedback/views.py -/home/rushilwiz/ion/intranet/apps/feedback/forms.py -/home/rushilwiz/ion/intranet/apps/feedback/urls.py -/home/rushilwiz/ion/intranet/apps/feedback/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/feedback/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/feedback/migrations/0002_auto_20151207_1933.py -/home/rushilwiz/ion/intranet/apps/feedback/migrations/0003_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/parking/migrations -/home/rushilwiz/ion/intranet/apps/parking/__init__.py -/home/rushilwiz/ion/intranet/apps/parking/tests.py -/home/rushilwiz/ion/intranet/apps/parking/models.py -/home/rushilwiz/ion/intranet/apps/parking/apps.py -/home/rushilwiz/ion/intranet/apps/parking/admin.py -/home/rushilwiz/ion/intranet/apps/parking/views.py -/home/rushilwiz/ion/intranet/apps/parking/forms.py -/home/rushilwiz/ion/intranet/apps/parking/urls.py -/home/rushilwiz/ion/intranet/apps/parking/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/parking/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/parking/migrations/0002_carapplication_user.py -/home/rushilwiz/ion/intranet/apps/parking/migrations/0003_auto_20160606_1448.py -/home/rushilwiz/ion/intranet/apps/dashboard/__init__.py -/home/rushilwiz/ion/intranet/apps/dashboard/views.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations -/home/rushilwiz/ion/intranet/apps/announcements/__init__.py -/home/rushilwiz/ion/intranet/apps/announcements/serializers.py -/home/rushilwiz/ion/intranet/apps/announcements/tests.py -/home/rushilwiz/ion/intranet/apps/announcements/models.py -/home/rushilwiz/ion/intranet/apps/announcements/admin.py -/home/rushilwiz/ion/intranet/apps/announcements/views.py -/home/rushilwiz/ion/intranet/apps/announcements/forms.py -/home/rushilwiz/ion/intranet/apps/announcements/notifications.py -/home/rushilwiz/ion/intranet/apps/announcements/urls.py -/home/rushilwiz/ion/intranet/apps/announcements/api.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0014_auto_20150723_0914.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0022_auto_20151118_1037.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0024_auto_20161004_2034.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0017_auto_20150723_1058.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0019_auto_20150806_0849.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0003_announcement_user.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0015_auto_20150723_0922.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0012_auto_20150713_1348.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0005_auto_20150515_1353.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0023_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0016_auto_20150723_1052.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0020_auto_20150806_1547.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0010_auto_20150629_1351.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0021_announcement_notify_email_all.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0008_auto_20150603_1401.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0018_announcement_notify_post.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0011_auto_20150713_1314.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0013_announcementrequest_admin_email_sent.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0006_merge.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0002_announcement_groups.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0009_announcement_expiration_date.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0005_auto_20150515_1355.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0004_auto_20150512_2010.py -/home/rushilwiz/ion/intranet/apps/announcements/migrations/0007_announcementrequest.py -/home/rushilwiz/ion/intranet/apps/emerg/migrations -/home/rushilwiz/ion/intranet/apps/emerg/__init__.py -/home/rushilwiz/ion/intranet/apps/emerg/tasks.py -/home/rushilwiz/ion/intranet/apps/emerg/views.py -/home/rushilwiz/ion/intranet/apps/emerg/api.py -/home/rushilwiz/ion/intranet/apps/emerg/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/features/migrations -/home/rushilwiz/ion/intranet/apps/features/__init__.py -/home/rushilwiz/ion/intranet/apps/features/tests.py -/home/rushilwiz/ion/intranet/apps/features/models.py -/home/rushilwiz/ion/intranet/apps/features/admin.py -/home/rushilwiz/ion/intranet/apps/features/helpers.py -/home/rushilwiz/ion/intranet/apps/features/context_processors.py -/home/rushilwiz/ion/intranet/apps/features/views.py -/home/rushilwiz/ion/intranet/apps/features/urls.py -/home/rushilwiz/ion/intranet/apps/features/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/features/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/features/migrations/0002_auto_20191117_1403.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations -/home/rushilwiz/ion/intranet/apps/sessionmgmt/__init__.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/tests.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/models.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/admin.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/helpers.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/views.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/urls.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0003_auto_20191012_1947.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0002_auto_20191012_1942.py -/home/rushilwiz/ion/intranet/apps/sessionmgmt/migrations/0004_auto_20191013_2230.py -/home/rushilwiz/ion/intranet/apps/emailfwd/migrations -/home/rushilwiz/ion/intranet/apps/emailfwd/__init__.py -/home/rushilwiz/ion/intranet/apps/emailfwd/tests.py -/home/rushilwiz/ion/intranet/apps/emailfwd/models.py -/home/rushilwiz/ion/intranet/apps/emailfwd/apps.py -/home/rushilwiz/ion/intranet/apps/emailfwd/views.py -/home/rushilwiz/ion/intranet/apps/emailfwd/forms.py -/home/rushilwiz/ion/intranet/apps/emailfwd/urls.py -/home/rushilwiz/ion/intranet/apps/emailfwd/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/emailfwd/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/templatetags/__init__.py -/home/rushilwiz/ion/intranet/apps/templatetags/math.py -/home/rushilwiz/ion/intranet/apps/templatetags/tests.py -/home/rushilwiz/ion/intranet/apps/templatetags/dates.py -/home/rushilwiz/ion/intranet/apps/templatetags/form_field.py -/home/rushilwiz/ion/intranet/apps/templatetags/dictionaries.py -/home/rushilwiz/ion/intranet/apps/templatetags/forms.py -/home/rushilwiz/ion/intranet/apps/templatetags/newtab_links.py -/home/rushilwiz/ion/intranet/apps/templatetags/strings.py -/home/rushilwiz/ion/intranet/apps/preferences/migrations -/home/rushilwiz/ion/intranet/apps/preferences/__init__.py -/home/rushilwiz/ion/intranet/apps/preferences/tests.py -/home/rushilwiz/ion/intranet/apps/preferences/views.py -/home/rushilwiz/ion/intranet/apps/preferences/fields.py -/home/rushilwiz/ion/intranet/apps/preferences/forms.py -/home/rushilwiz/ion/intranet/apps/preferences/urls.py -/home/rushilwiz/ion/intranet/apps/preferences/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/printing/migrations -/home/rushilwiz/ion/intranet/apps/printing/__init__.py -/home/rushilwiz/ion/intranet/apps/printing/tests.py -/home/rushilwiz/ion/intranet/apps/printing/models.py -/home/rushilwiz/ion/intranet/apps/printing/admin.py -/home/rushilwiz/ion/intranet/apps/printing/views.py -/home/rushilwiz/ion/intranet/apps/printing/forms.py -/home/rushilwiz/ion/intranet/apps/printing/magic_files -/home/rushilwiz/ion/intranet/apps/printing/urls.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/__init__.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0006_printjob_page_range.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0007_printjob_duplex.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0004_auto_20151218_1346.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0001_initial.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0008_auto_20160828_2058.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0009_printjob_fit.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0003_printjob_num_pages.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0005_auto_20160330_1554.py -/home/rushilwiz/ion/intranet/apps/printing/migrations/0002_printjob_printed.py -/home/rushilwiz/ion/intranet/apps/printing/magic_files/msooxml -/home/rushilwiz/ion/intranet/apps/printing/magic_files/COPYING -/home/rushilwiz/ion/intranet/static/manifest.json -/home/rushilwiz/ion/intranet/static/themes -/home/rushilwiz/ion/intranet/static/img -/home/rushilwiz/ion/intranet/static/js -/home/rushilwiz/ion/intranet/static/serviceworker.js -/home/rushilwiz/ion/intranet/static/signage -/home/rushilwiz/ion/intranet/static/svg -/home/rushilwiz/ion/intranet/static/css -/home/rushilwiz/ion/intranet/static/vendor -/home/rushilwiz/ion/intranet/static/themes/snow -/home/rushilwiz/ion/intranet/static/themes/halloween -/home/rushilwiz/ion/intranet/static/themes/piday -/home/rushilwiz/ion/intranet/static/themes/snow/snow.js -/home/rushilwiz/ion/intranet/static/themes/snow/snow.css -/home/rushilwiz/ion/intranet/static/themes/halloween/halloween.css -/home/rushilwiz/ion/intranet/static/themes/halloween/halloween.js -/home/rushilwiz/ion/intranet/static/themes/piday/piday.css -/home/rushilwiz/ion/intranet/static/themes/piday/piday.js -/home/rushilwiz/ion/intranet/static/img/promo -/home/rushilwiz/ion/intranet/static/img/patterns -/home/rushilwiz/ion/intranet/static/img/accounts -/home/rushilwiz/ion/intranet/static/img/logos -/home/rushilwiz/ion/intranet/static/img/promo/old -/home/rushilwiz/ion/intranet/static/img/promo/originals -/home/rushilwiz/ion/intranet/static/img/promo/old/original -/home/rushilwiz/ion/intranet/static/img/patterns/dark -/home/rushilwiz/ion/intranet/static/img/logos/touch -/home/rushilwiz/ion/intranet/static/js/responsive.core.js -/home/rushilwiz/ion/intranet/static/js/mailforwarding.js -/home/rushilwiz/ion/intranet/static/js/welcome.js -/home/rushilwiz/ion/intranet/static/js/announcement.form.js -/home/rushilwiz/ion/intranet/static/js/eighth -/home/rushilwiz/ion/intranet/static/js/common.header.js -/home/rushilwiz/ion/intranet/static/js/hoco_scores.js -/home/rushilwiz/ion/intranet/static/js/schedule.js -/home/rushilwiz/ion/intranet/static/js/common.js -/home/rushilwiz/ion/intranet/static/js/bus.js -/home/rushilwiz/ion/intranet/static/js/features.js -/home/rushilwiz/ion/intranet/static/js/files.js -/home/rushilwiz/ion/intranet/static/js/pages -/home/rushilwiz/ion/intranet/static/js/polls.js -/home/rushilwiz/ion/intranet/static/js/busdriver.js -/home/rushilwiz/ion/intranet/static/js/login.js -/home/rushilwiz/ion/intranet/static/js/hoco_ribbon.js -/home/rushilwiz/ion/intranet/static/js/signage.js -/home/rushilwiz/ion/intranet/static/js/dashboard -/home/rushilwiz/ion/intranet/static/js/vendor -/home/rushilwiz/ion/intranet/static/js/about.js -/home/rushilwiz/ion/intranet/static/js/common.nav.js -/home/rushilwiz/ion/intranet/static/js/eighth/waitlist.toggle.js -/home/rushilwiz/ion/intranet/static/js/eighth/user_link.js -/home/rushilwiz/ion/intranet/static/js/eighth/groups.js -/home/rushilwiz/ion/intranet/static/js/eighth/ui_init.js -/home/rushilwiz/ion/intranet/static/js/eighth/responsive.js -/home/rushilwiz/ion/intranet/static/js/eighth/attendance.js -/home/rushilwiz/ion/intranet/static/js/eighth/signup.js -/home/rushilwiz/ion/intranet/static/js/eighth/schedule.js -/home/rushilwiz/ion/intranet/static/js/eighth/signupUI.js -/home/rushilwiz/ion/intranet/static/js/eighth/statistics.js -/home/rushilwiz/ion/intranet/static/js/eighth/admin.js -/home/rushilwiz/ion/intranet/static/js/eighth/distribute_group.js -/home/rushilwiz/ion/intranet/static/js/eighth/signup.search.js -/home/rushilwiz/ion/intranet/static/js/pages/bus.js -/home/rushilwiz/ion/intranet/static/js/dashboard/events.js -/home/rushilwiz/ion/intranet/static/js/dashboard/common.js -/home/rushilwiz/ion/intranet/static/js/dashboard/seniors.js -/home/rushilwiz/ion/intranet/static/js/dashboard/eighth-widget.js -/home/rushilwiz/ion/intranet/static/js/dashboard/announcements.js -/home/rushilwiz/ion/intranet/static/js/vendor/PIE -/home/rushilwiz/ion/intranet/static/js/vendor/reconnecting-websocket.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/spin.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/backbone-min.map -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.are-you-sure.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery-1.10.2.min.map -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.stickytableheaders.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/Chart.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/underscore-min.map -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.overscroll.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/underscore-min.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.scrollto.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.cookie.js -/home/rushilwiz/ion/intranet/static/js/vendor/backbone-min.js -/home/rushilwiz/ion/intranet/static/js/vendor/moment.js -/home/rushilwiz/ion/intranet/static/js/vendor/sha256.js -/home/rushilwiz/ion/intranet/static/js/vendor/svg.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery-1.10.2.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/chrono.min.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.formset.js -/home/rushilwiz/ion/intranet/static/js/vendor/json2.js -/home/rushilwiz/ion/intranet/static/js/vendor/jquery.timeago.js -/home/rushilwiz/ion/intranet/static/js/vendor/modernizr.js -/home/rushilwiz/ion/intranet/static/js/vendor/PIE/PIE.js -/home/rushilwiz/ion/intranet/static/js/vendor/PIE/PIE.htc -/home/rushilwiz/ion/intranet/static/signage/serviceworker.js -/home/rushilwiz/ion/intranet/static/css/api.scss -/home/rushilwiz/ion/intranet/static/css/search.scss -/home/rushilwiz/ion/intranet/static/css/events.scss -/home/rushilwiz/ion/intranet/static/css/mobile.scss -/home/rushilwiz/ion/intranet/static/css/schedule.scss -/home/rushilwiz/ion/intranet/static/css/eighth.maintenance.scss -/home/rushilwiz/ion/intranet/static/css/hoco_scores.scss -/home/rushilwiz/ion/intranet/static/css/files.scss -/home/rushilwiz/ion/intranet/static/css/eighth.common.scss -/home/rushilwiz/ion/intranet/static/css/dashboard.widgets.scss -/home/rushilwiz/ion/intranet/static/css/bus.scss -/home/rushilwiz/ion/intranet/static/css/eighth.signup.scss -/home/rushilwiz/ion/intranet/static/css/_reset.scss -/home/rushilwiz/ion/intranet/static/css/oauth.scss -/home/rushilwiz/ion/intranet/static/css/theme.blue.scss -/home/rushilwiz/ion/intranet/static/css/responsive.scss -/home/rushilwiz/ion/intranet/static/css/_colors.scss -/home/rushilwiz/ion/intranet/static/css/groups.scss -/home/rushilwiz/ion/intranet/static/css/emerg.scss -/home/rushilwiz/ion/intranet/static/css/announcements.form.scss -/home/rushilwiz/ion/intranet/static/css/profile.scss -/home/rushilwiz/ion/intranet/static/css/eighth.admin.scss -/home/rushilwiz/ion/intranet/static/css/about.scss -/home/rushilwiz/ion/intranet/static/css/lostfound.scss -/home/rushilwiz/ion/intranet/static/css/welcome.scss -/home/rushilwiz/ion/intranet/static/css/sessionmgmt.scss -/home/rushilwiz/ion/intranet/static/css/schedule.widget.scss -/home/rushilwiz/ion/intranet/static/css/dark -/home/rushilwiz/ion/intranet/static/css/polls.form.scss -/home/rushilwiz/ion/intranet/static/css/dashboard.scss -/home/rushilwiz/ion/intranet/static/css/page_base.scss -/home/rushilwiz/ion/intranet/static/css/hoco_ribbon.scss -/home/rushilwiz/ion/intranet/static/css/login.scss -/home/rushilwiz/ion/intranet/static/css/themes.scss -/home/rushilwiz/ion/intranet/static/css/responsive.core.scss -/home/rushilwiz/ion/intranet/static/css/eighth.schedule.scss -/home/rushilwiz/ion/intranet/static/css/signage.base.scss -/home/rushilwiz/ion/intranet/static/css/polls.scss -/home/rushilwiz/ion/intranet/static/css/eighth.profile.scss -/home/rushilwiz/ion/intranet/static/css/signage.page.scss -/home/rushilwiz/ion/intranet/static/css/base.scss -/home/rushilwiz/ion/intranet/static/css/courses.scss -/home/rushilwiz/ion/intranet/static/css/preferences.scss -/home/rushilwiz/ion/intranet/static/css/board.scss -/home/rushilwiz/ion/intranet/static/css/eighth.attendance.scss -/home/rushilwiz/ion/intranet/static/css/dark/events.scss -/home/rushilwiz/ion/intranet/static/css/dark/schedule.scss -/home/rushilwiz/ion/intranet/static/css/dark/nav.scss -/home/rushilwiz/ion/intranet/static/css/dark/cke.scss -/home/rushilwiz/ion/intranet/static/css/dark/files.scss -/home/rushilwiz/ion/intranet/static/css/dark/dashboard.widgets.scss -/home/rushilwiz/ion/intranet/static/css/dark/bus.scss -/home/rushilwiz/ion/intranet/static/css/dark/eighth.signup.scss -/home/rushilwiz/ion/intranet/static/css/dark/oauth.scss -/home/rushilwiz/ion/intranet/static/css/dark/about.scss -/home/rushilwiz/ion/intranet/static/css/dark/lostfound.scss -/home/rushilwiz/ion/intranet/static/css/dark/welcome.scss -/home/rushilwiz/ion/intranet/static/css/dark/sessionmgmt.scss -/home/rushilwiz/ion/intranet/static/css/dark/schedule.widget.scss -/home/rushilwiz/ion/intranet/static/css/dark/dashboard.scss -/home/rushilwiz/ion/intranet/static/css/dark/login.scss -/home/rushilwiz/ion/intranet/static/css/dark/eighth.schedule.scss -/home/rushilwiz/ion/intranet/static/css/dark/polls.scss -/home/rushilwiz/ion/intranet/static/css/dark/select.scss -/home/rushilwiz/ion/intranet/static/css/dark/base.scss -/home/rushilwiz/ion/intranet/static/css/dark/preferences.scss -/home/rushilwiz/ion/intranet/static/css/dark/eighth.attendance.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2 -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4 -/home/rushilwiz/ion/intranet/static/vendor/ckeditor -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5 -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21 -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0 -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom -/home/rushilwiz/ion/intranet/static/vendor/messenger -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/sprites -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_core.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_shims.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_stacked.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_animated.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_bordered-pulled.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_rotated-flipped.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/solid.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/v4-shims.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_fixed-width.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/fontawesome.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_screen-reader.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_list.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/brands.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_icons.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_variables.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_mixins.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/_larger.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/less/regular.less -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/shims.json -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/sponsors.yml -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/icons.json -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/icons.yml -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/categories.yml -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/metadata/shims.yml -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/v4-shims.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/brands.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/brands.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/fontawesome.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/regular.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/solid.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/v4-shims.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/conflict-detection.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/fontawesome.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/solid.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/all.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/regular.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/all.min.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/js/conflict-detection.js -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_core.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_animated.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/v4-shims.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/brands.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_variables.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_icons.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_screen-reader.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_bordered-pulled.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/fontawesome.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/solid.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_shims.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_larger.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_rotated-flipped.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_list.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_mixins.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/regular.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_fixed-width.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/scss/_stacked.scss -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.ttf -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.woff2 -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.ttf -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.woff2 -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.woff -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.woff2 -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.eot -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.ttf -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-regular-400.woff -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-brands-400.eot -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.woff -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/webfonts/fa-solid-900.eot -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs/solid -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs/brands -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/svgs/regular -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/solid.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/v4-shims.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/brands.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/all.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/svg-with-js.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/all.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/regular.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/solid.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/svg-with-js.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/v4-shims.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/regular.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/brands.min.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/fontawesome.css -/home/rushilwiz/ion/intranet/static/vendor/fontawesome-free-5.11.2/css/fontawesome.min.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/package.json -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/selectize.jquery.json -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/yarn.lock -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/bower.json -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/Makefile -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/README.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/Gruntfile.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/CHANGELOG.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/karma.conf.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/events.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/plugins.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/api.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/docs/usage.md -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/contrib -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/utils.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/selectize.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/selectize.jquery.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/constants.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/defaults.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/contrib/microevent.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/contrib/highlight.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.bootstrap2.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.legacy.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.bootstrap3.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/less/selectize.default.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/remove_button -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/optgroup_columns -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/restore_on_backspace -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/dropdown_header -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/drag_drop -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/remove_button/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/remove_button/plugin.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/optgroup_columns/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/optgroup_columns/plugin.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/restore_on_backspace/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/dropdown_header/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/dropdown_header/plugin.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/drag_drop/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/src/plugins/drag_drop/plugin.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/api.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/events.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/events_dom.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/xss.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/setup.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/support -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/interaction.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/support/base.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/test/support/syn.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.bootstrap2.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.legacy.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.bootstrap3.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/selectize.default.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/remove_button.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/drag_drop.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/dropdown_header.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/less/plugins/optgroup_columns.less -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/selectize.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/standalone -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/selectize.min.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/standalone/selectize.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/js/standalone/selectize.min.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.default.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.bootstrap2.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.bootstrap3.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/dist/css/selectize.legacy.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/images -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/contacts.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/rtl.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/events.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/movies.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/basic.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/required.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/create-filter.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/dynamic.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/optgroups.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/github.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/cities.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/lock.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/performance.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/confirm.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/plugins.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/api.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/customization.html -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/jqueryui.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/index.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/es5.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/js/jquery.min.js -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/css/normalize.css -/home/rushilwiz/ion/intranet/static/vendor/selectize.js-0.12.4/examples/css/stylesheet.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/LICENSE.md -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/contents.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/adapters -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/CHANGES.md -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/styles.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/build-config.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/config.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/README.md -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/lang -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/ckeditor.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/adapters/jquery.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/lang/en.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/clipboard -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/dialog -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/images -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/dialogs -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/images/hidpi -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/dialogs/link.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/link/dialogs/anchor.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/clipboard/dialogs -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/clipboard/dialogs/paste.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/dialog/dialogDefinition.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/images -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/plugin.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/fr.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/en.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/tr.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/de.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/es.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/vi.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/nn.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/it.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ru.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/cs.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/pl.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/fi.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/zh.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/hu.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/sk.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ko.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/he.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ja.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/et.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/nl.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/ar.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/pt.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/pt-br.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/nb.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/youtube/lang/el.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image/images -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image/dialogs -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/plugins/image/dialogs/image.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/images -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_ie8.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_iequirks.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_opera.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_ie.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_ie7.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_ie.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog_ie7.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/dialog.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_ie8.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/readme.md -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_gecko.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/editor_iequirks.css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/images/hidpi -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/dialog -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_richcombo.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_elementspath.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_toolbar.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_reset.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_panel.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_presets.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_menu.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_colorpanel.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/_mainui.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/components/editor.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie8 -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/opera -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie7 -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/gecko -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/dialog_ie8.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/editor_ie8.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/opera/dialog_opera.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie7/dialog_ie7.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie7/editor_ie7.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/gecko/editor_gecko.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie/editor_ie.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie/dialog_ie.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/dialog_iequirks.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/editor_iequirks.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/dialog/dialog.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config/_defaults.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config/_config.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/scss/config/_colors.scss -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/bootstrapck-sample.html -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/css -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/js/jquery-1.11.0.min.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/js/analytics.js -/home/rushilwiz/ion/intranet/static/vendor/ckeditor/skins/bootstrapck/sample/css/bootstrapck-sample.css -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/package.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/jquery.datetimepicker.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/bower.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/jquery.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/index.html -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/README.md -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/screen -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/jquery.datetimepicker.css -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.4.5/datetimepicker.jquery.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/package.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/jquery.datetimepicker.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/doc.tpl -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/bower.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/jquery.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/index.html -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/README.md -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/screen -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/jquery.datetimepicker.css -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/datetimepicker.jquery.json -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/karma.conf.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/input_in_container_fixed_to_bottom_of_viewport.html -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/input_in_container_fixed_to_top_of_viewport.html -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/index.html -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/app.css -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/destroy.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/events.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/bootstrap.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/options.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/init.js -/home/rushilwiz/ion/intranet/static/vendor/datetimepicker-2.5.21/tests/tests/methods.js -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/package.json -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/component.json -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/bower.json -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/Gruntfile.coffee -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/install.json -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/README.md -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/coffee -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js/sortable.js -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js/sortable.min.js -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/js/install.js -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/api -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/welcome -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/intro.md -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/api/2-Themes.md -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/api/1-Options.md -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/docs/welcome/index.html -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-finder.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-slick.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/_sortable.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-dark.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-minimal.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-light.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/sass/sortable-theme-bootstrap.sass -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-light.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-slick.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-bootstrap.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-finder.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-minimal.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/css/sortable-theme-dark.css -/home/rushilwiz/ion/intranet/static/vendor/sortable-0.8.0/coffee/sortable.coffee -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/images -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.theme.min.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.theme.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.structure.min.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/index.html -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.min.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.js -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.structure.css -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/external -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/jquery-ui.min.js -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/external/jquery -/home/rushilwiz/ion/intranet/static/vendor/jquery-ui-1.11.0.custom/external/jquery/jquery.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/package.json -/home/rushilwiz/ion/intranet/static/vendor/messenger/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib -/home/rushilwiz/ion/intranet/static/vendor/messenger/component.json -/home/rushilwiz/ion/intranet/static/vendor/messenger/CONTRIBUTORS -/home/rushilwiz/ion/intranet/static/vendor/messenger/build -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs -/home/rushilwiz/ion/intranet/static/vendor/messenger/bower.json -/home/rushilwiz/ion/intranet/static/vendor/messenger/Gruntfile.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/src -/home/rushilwiz/ion/intranet/static/vendor/messenger/README.md -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec -/home/rushilwiz/ion/intranet/static/vendor/messenger/SpecRunner.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/CHANGELOG.md -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1 -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/shims.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/sinon-1.6.0.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/MIT.LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/jasmine.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/jasmine-html.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/jasmine-1.3.1/jasmine.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/backbone -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/jasmine -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/underscore -/home/rushilwiz/ion/intranet/static/vendor/messenger/lib/licenses/sinon -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger.min.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger-theme-future.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/js/messenger-theme-flat.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-block.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-flat.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-future.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-air.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-spinner.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/build/css/messenger-theme-ice.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/images -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/intro.md -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/images -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/index.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/iframe-demo.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/location-sel.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/theme-sel.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/execute.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/location-sel.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/demo.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/main.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/javascripts/theme-sel.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1 -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/shims.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/sinon-1.6.0.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/MIT.LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/jasmine.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/jasmine-html.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/jasmine-1.3.1/jasmine.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/README.md -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/demo.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/underscore.min.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/coffee-script.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/js2coffee.min.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/codemirror.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/codemirror.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript/LICENSE -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript/coffeescript.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/coffeescript/index.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript/index.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript/javascript.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/lib/CodeMirror/mode/javascript/typescript.html -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/js/executr.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/build/css/executr.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/css/executr.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/executr/src/coffee/executr.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/backbone -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/jasmine -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/underscore -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/lib/licenses/sinon -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/location-sel.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/theme-sel.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/stylesheet.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/theme-sel.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/pygment_trac.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/location-sel.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/docs/welcome/stylesheets/demo.css -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/js -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/js/preboot.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-air.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-spinner.scss -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-flat.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-future.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-block.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger-theme-ice.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/sass/messenger.sass -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee/messenger.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee/messenger-theme-future.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/src/coffee/messenger-theme-flat.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/MessengerSpec.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/MessengerSpec.coffee -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib/jquery-1.9.1.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib/backbone-0.9.10.js -/home/rushilwiz/ion/intranet/static/vendor/messenger/spec/lib/underscore-1.4.4.js -/home/rushilwiz/ion/intranet/templates/blank.html -/home/rushilwiz/ion/intranet/templates/page_with_nav.html -/home/rushilwiz/ion/intranet/templates/error -/home/rushilwiz/ion/intranet/templates/search -/home/rushilwiz/ion/intranet/templates/oauth2_provider -/home/rushilwiz/ion/intranet/templates/monitoring -/home/rushilwiz/ion/intranet/templates/notifications -/home/rushilwiz/ion/intranet/templates/auth -/home/rushilwiz/ion/intranet/templates/users -/home/rushilwiz/ion/intranet/templates/lostfound -/home/rushilwiz/ion/intranet/templates/events -/home/rushilwiz/ion/intranet/templates/eighth -/home/rushilwiz/ion/intranet/templates/files -/home/rushilwiz/ion/intranet/templates/itemreg -/home/rushilwiz/ion/intranet/templates/page_with_header.html -/home/rushilwiz/ion/intranet/templates/docs -/home/rushilwiz/ion/intranet/templates/polls -/home/rushilwiz/ion/intranet/templates/seniors -/home/rushilwiz/ion/intranet/templates/bus -/home/rushilwiz/ion/intranet/templates/signage -/home/rushilwiz/ion/intranet/templates/email_metadata.html -/home/rushilwiz/ion/intranet/templates/page_base.html -/home/rushilwiz/ion/intranet/templates/schedule -/home/rushilwiz/ion/intranet/templates/welcome -/home/rushilwiz/ion/intranet/templates/email_footer.html -/home/rushilwiz/ion/intranet/templates/special -/home/rushilwiz/ion/intranet/templates/maint.html -/home/rushilwiz/ion/intranet/templates/android_client_check.html -/home/rushilwiz/ion/intranet/templates/nav.html -/home/rushilwiz/ion/intranet/templates/groups -/home/rushilwiz/ion/intranet/templates/feature_announcements.html -/home/rushilwiz/ion/intranet/templates/credits.html -/home/rushilwiz/ion/intranet/templates/feedback -/home/rushilwiz/ion/intranet/templates/rest_framework -/home/rushilwiz/ion/intranet/templates/parking -/home/rushilwiz/ion/intranet/templates/dashboard -/home/rushilwiz/ion/intranet/templates/announcements -/home/rushilwiz/ion/intranet/templates/meta.html -/home/rushilwiz/ion/intranet/templates/sessionmgmt -/home/rushilwiz/ion/intranet/templates/emailfwd -/home/rushilwiz/ion/intranet/templates/preferences -/home/rushilwiz/ion/intranet/templates/printing -/home/rushilwiz/ion/intranet/templates/error/503.html -/home/rushilwiz/ion/intranet/templates/error/403.html -/home/rushilwiz/ion/intranet/templates/error/error_base.html -/home/rushilwiz/ion/intranet/templates/error/csrf.html -/home/rushilwiz/ion/intranet/templates/error/404.html -/home/rushilwiz/ion/intranet/templates/error/500.html -/home/rushilwiz/ion/intranet/templates/error/static -/home/rushilwiz/ion/intranet/templates/error/static/503.html -/home/rushilwiz/ion/intranet/templates/error/static/504.html -/home/rushilwiz/ion/intranet/templates/error/static/signage.html -/home/rushilwiz/ion/intranet/templates/error/static/403.html -/home/rushilwiz/ion/intranet/templates/error/static/unavailable.html -/home/rushilwiz/ion/intranet/templates/error/static/502.html -/home/rushilwiz/ion/intranet/templates/error/static/501.html -/home/rushilwiz/ion/intranet/templates/error/static/404.html -/home/rushilwiz/ion/intranet/templates/error/static/500.html -/home/rushilwiz/ion/intranet/templates/search/tips.html -/home/rushilwiz/ion/intranet/templates/search/search_results.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/authorized-token-delete.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_form.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/authorize.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_list.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_confirm_delete.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/authorized-tokens.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_detail.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/application_registration_form.html -/home/rushilwiz/ion/intranet/templates/oauth2_provider/base.html -/home/rushilwiz/ion/intranet/templates/notifications/gcm_list.html -/home/rushilwiz/ion/intranet/templates/notifications/gcm_post.html -/home/rushilwiz/ion/intranet/templates/auth/ap_week_schedule.html -/home/rushilwiz/ion/intranet/templates/auth/login.html -/home/rushilwiz/ion/intranet/templates/auth/reauth.html -/home/rushilwiz/ion/intranet/templates/auth/about.html -/home/rushilwiz/ion/intranet/templates/auth/reset_password.html -/home/rushilwiz/ion/intranet/templates/users/schedule_rows.html -/home/rushilwiz/ion/intranet/templates/users/all_courses.html -/home/rushilwiz/ion/intranet/templates/users/profile.html -/home/rushilwiz/ion/intranet/templates/users/all_classes.html -/home/rushilwiz/ion/intranet/templates/users/class_room.html -/home/rushilwiz/ion/intranet/templates/users/class.html -/home/rushilwiz/ion/intranet/templates/lostfound/lostitem.html -/home/rushilwiz/ion/intranet/templates/lostfound/founditem_form.html -/home/rushilwiz/ion/intranet/templates/lostfound/founditem.html -/home/rushilwiz/ion/intranet/templates/lostfound/lostitem_form.html -/home/rushilwiz/ion/intranet/templates/lostfound/item_view.html -/home/rushilwiz/ion/intranet/templates/lostfound/home.html -/home/rushilwiz/ion/intranet/templates/lostfound/lostitem_delete.html -/home/rushilwiz/ion/intranet/templates/lostfound/founditem_delete.html -/home/rushilwiz/ion/intranet/templates/events/add_modify.html -/home/rushilwiz/ion/intranet/templates/events/event.html -/home/rushilwiz/ion/intranet/templates/events/public_event.html -/home/rushilwiz/ion/intranet/templates/events/emails -/home/rushilwiz/ion/intranet/templates/events/join_event.html -/home/rushilwiz/ion/intranet/templates/events/delete.html -/home/rushilwiz/ion/intranet/templates/events/scheduled_activity.html -/home/rushilwiz/ion/intranet/templates/events/roster.html -/home/rushilwiz/ion/intranet/templates/events/home.html -/home/rushilwiz/ion/intranet/templates/events/tjstar_widget.html -/home/rushilwiz/ion/intranet/templates/events/emails/admin_approve.html -/home/rushilwiz/ion/intranet/templates/eighth/waitlist_list.html -/home/rushilwiz/ion/intranet/templates/eighth/profile.html -/home/rushilwiz/ion/intranet/templates/eighth/emails -/home/rushilwiz/ion/intranet/templates/eighth/email_students.html -/home/rushilwiz/ion/intranet/templates/eighth/multi_signup.html -/home/rushilwiz/ion/intranet/templates/eighth/profile_often.html -/home/rushilwiz/ion/intranet/templates/eighth/signup.html -/home/rushilwiz/ion/intranet/templates/eighth/roster_list.html -/home/rushilwiz/ion/intranet/templates/eighth/empty_state.html -/home/rushilwiz/ion/intranet/templates/eighth/profile_signup.html -/home/rushilwiz/ion/intranet/templates/eighth/signup_widget.html -/home/rushilwiz/ion/intranet/templates/eighth/roster.html -/home/rushilwiz/ion/intranet/templates/eighth/take_attendance.html -/home/rushilwiz/ion/intranet/templates/eighth/statistics.html -/home/rushilwiz/ion/intranet/templates/eighth/edit_profile.html -/home/rushilwiz/ion/intranet/templates/eighth/profile_header.html -/home/rushilwiz/ion/intranet/templates/eighth/admin -/home/rushilwiz/ion/intranet/templates/eighth/sponsor_widget.html -/home/rushilwiz/ion/intranet/templates/eighth/activity.html -/home/rushilwiz/ion/intranet/templates/eighth/absences.html -/home/rushilwiz/ion/intranet/templates/eighth/profile_history.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/room_changed_single.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/waitlist.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/room_changed_activity.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/activity_cancelled.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/withdrawn_students.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/absence.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/group_signup_complete.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/signup_status.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/import_notify.html -/home/rushilwiz/ion/intranet/templates/eighth/emails/group_signup_error.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/add_block.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/room_utilization.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/delinquent_students.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_activity_id.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/add_activity.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/eighth_admin_page_base.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/room_sanity_check.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/sponsor_sanity_check.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_start_date.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/history.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/sponsor_schedule.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/no_signups_roster.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/dashboard.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/list_users.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/list_sponsors.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/room_utilization_for_block.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/choose_roster_activities.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/sign_up_group.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/copy_form.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/possible_students_add_group.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/keep_room_history.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/clear_comments.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/global_statistics.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/cache.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/after_deadline_signups.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/transfer_students.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/delete_user.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/start_date.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/view_activity_schedule.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/migrate_outstanding_passes.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/open_passes.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/activities_without_attendance.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/delete_form.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/add_sponsor.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/keep_sponsor_history.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/upload_group.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/distribute_group.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_activity.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/schedule_activity.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/maintenance.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/remove_duplicates.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/out_of_building_schedules.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/unschedule_activity.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_group.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/edit_form.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/distribute_students.html -/home/rushilwiz/ion/intranet/templates/eighth/admin/start_of_year.html -/home/rushilwiz/ion/intranet/templates/files/upload.html -/home/rushilwiz/ion/intranet/templates/files/directory.html -/home/rushilwiz/ion/intranet/templates/files/delete.html -/home/rushilwiz/ion/intranet/templates/files/auth.html -/home/rushilwiz/ion/intranet/templates/files/home.html -/home/rushilwiz/ion/intranet/templates/itemreg/search.html -/home/rushilwiz/ion/intranet/templates/itemreg/register_form.html -/home/rushilwiz/ion/intranet/templates/itemreg/item_view.html -/home/rushilwiz/ion/intranet/templates/itemreg/home.html -/home/rushilwiz/ion/intranet/templates/itemreg/register_delete.html -/home/rushilwiz/ion/intranet/templates/docs/accounts.html -/home/rushilwiz/ion/intranet/templates/docs/terminology.html -/home/rushilwiz/ion/intranet/templates/docs/privacy.html -/home/rushilwiz/ion/intranet/templates/polls/add_modify.html -/home/rushilwiz/ion/intranet/templates/polls/poll.html -/home/rushilwiz/ion/intranet/templates/polls/vote.html -/home/rushilwiz/ion/intranet/templates/polls/delete.html -/home/rushilwiz/ion/intranet/templates/polls/home.html -/home/rushilwiz/ion/intranet/templates/polls/results.html -/home/rushilwiz/ion/intranet/templates/seniors/signage.html -/home/rushilwiz/ion/intranet/templates/seniors/login.html -/home/rushilwiz/ion/intranet/templates/seniors/login_top.html -/home/rushilwiz/ion/intranet/templates/seniors/add.html -/home/rushilwiz/ion/intranet/templates/seniors/home.html -/home/rushilwiz/ion/intranet/templates/bus/home.html -/home/rushilwiz/ion/intranet/templates/signage/pages -/home/rushilwiz/ion/intranet/templates/signage/base.html -/home/rushilwiz/ion/intranet/templates/signage/pages/hello_world.html -/home/rushilwiz/ion/intranet/templates/signage/pages/announcements.html -/home/rushilwiz/ion/intranet/templates/signage/pages/eighth.html -/home/rushilwiz/ion/intranet/templates/signage/pages/bus.html -/home/rushilwiz/ion/intranet/templates/schedule/admin_daytype.html -/home/rushilwiz/ion/intranet/templates/schedule/month.html -/home/rushilwiz/ion/intranet/templates/schedule/embed.html -/home/rushilwiz/ion/intranet/templates/schedule/admin_add.html -/home/rushilwiz/ion/intranet/templates/schedule/admin_comment.html -/home/rushilwiz/ion/intranet/templates/schedule/week.html -/home/rushilwiz/ion/intranet/templates/schedule/view.html -/home/rushilwiz/ion/intranet/templates/schedule/admin_home.html -/home/rushilwiz/ion/intranet/templates/schedule/fill.html -/home/rushilwiz/ion/intranet/templates/schedule/week_view.html -/home/rushilwiz/ion/intranet/templates/schedule/widget.html -/home/rushilwiz/ion/intranet/templates/schedule/calendar.html -/home/rushilwiz/ion/intranet/templates/welcome/teacher.html -/home/rushilwiz/ion/intranet/templates/welcome/eighth_policy.html -/home/rushilwiz/ion/intranet/templates/welcome/mail_forwarding.html -/home/rushilwiz/ion/intranet/templates/welcome/student.html -/home/rushilwiz/ion/intranet/templates/welcome/base.html -/home/rushilwiz/ion/intranet/templates/special/hoco_ribbon.html -/home/rushilwiz/ion/intranet/templates/special/hoco_scores.html -/home/rushilwiz/ion/intranet/templates/groups/addmodify.html -/home/rushilwiz/ion/intranet/templates/groups/groups.html -/home/rushilwiz/ion/intranet/templates/feedback/email.html -/home/rushilwiz/ion/intranet/templates/feedback/form.html -/home/rushilwiz/ion/intranet/templates/rest_framework/login.html -/home/rushilwiz/ion/intranet/templates/rest_framework/api.html -/home/rushilwiz/ion/intranet/templates/parking/joint.html -/home/rushilwiz/ion/intranet/templates/parking/intro.html -/home/rushilwiz/ion/intranet/templates/parking/car.html -/home/rushilwiz/ion/intranet/templates/parking/form.html -/home/rushilwiz/ion/intranet/templates/dashboard/admin.html -/home/rushilwiz/ion/intranet/templates/dashboard/dashboard.html -/home/rushilwiz/ion/intranet/templates/dashboard/eighth_info.html -/home/rushilwiz/ion/intranet/templates/dashboard/promo.html -/home/rushilwiz/ion/intranet/templates/dashboard/senior_forwarding.html -/home/rushilwiz/ion/intranet/templates/dashboard/links.html -/home/rushilwiz/ion/intranet/templates/dashboard/seniors.html -/home/rushilwiz/ion/intranet/templates/announcements/add_modify.html -/home/rushilwiz/ion/intranet/templates/announcements/announcement.html -/home/rushilwiz/ion/intranet/templates/announcements/approve.html -/home/rushilwiz/ion/intranet/templates/announcements/request_status.html -/home/rushilwiz/ion/intranet/templates/announcements/emails -/home/rushilwiz/ion/intranet/templates/announcements/view.html -/home/rushilwiz/ion/intranet/templates/announcements/request.html -/home/rushilwiz/ion/intranet/templates/announcements/delete.html -/home/rushilwiz/ion/intranet/templates/announcements/success.html -/home/rushilwiz/ion/intranet/templates/announcements/emails/announcement_approved.html -/home/rushilwiz/ion/intranet/templates/announcements/emails/teacher_approve.html -/home/rushilwiz/ion/intranet/templates/announcements/emails/announcement_posted.html -/home/rushilwiz/ion/intranet/templates/announcements/emails/admin_approve.html -/home/rushilwiz/ion/intranet/templates/sessionmgmt/index.html -/home/rushilwiz/ion/intranet/templates/emailfwd/senior_forward.html -/home/rushilwiz/ion/intranet/templates/preferences/preferences.html -/home/rushilwiz/ion/intranet/templates/preferences/privacy_options.html -/home/rushilwiz/ion/intranet/templates/printing/print.html -/home/rushilwiz/ion/intranet/templates/printing/print_form.html -/home/rushilwiz/ion/scripts/make_dark_pattern_images.py -/home/rushilwiz/ion/scripts/validate-commit-messages.py -/home/rushilwiz/ion/scripts/get_ldif.py -/home/rushilwiz/ion/config/bash_completion.d -/home/rushilwiz/ion/config/krb5.conf -/home/rushilwiz/ion/config/devconfig.json -/home/rushilwiz/ion/config/devconfig.json.sample -/home/rushilwiz/ion/config/bash_completion.d/fab -/home/rushilwiz/ctf/google-ctf -/home/rushilwiz/ctf/google-ctf/day1 -/home/rushilwiz/ctf/google-ctf/day1/rand2.id2 -/home/rushilwiz/ctf/google-ctf/day1/rand2.id0 -/home/rushilwiz/ctf/google-ctf/day1/rand2.id1 -/home/rushilwiz/ctf/google-ctf/day1/rand2.til -/home/rushilwiz/ctf/google-ctf/day1/rand2.nam -/home/rushilwiz/ctf/google-ctf/day1/rand2 -/home/rushilwiz/Projects/hoco2020 -/home/rushilwiz/Projects/selenium -/home/rushilwiz/Projects/webserver -/home/rushilwiz/Projects/chirper -/home/rushilwiz/Projects/hoco2020/index.html -/home/rushilwiz/Projects/hoco2020/styles.css -/home/rushilwiz/Projects/hoco2020/main.js -/home/rushilwiz/Projects/hoco2020/package-lock.json -/home/rushilwiz/Projects/selenium/data.json -/home/rushilwiz/Projects/selenium/geckodriver.log -/home/rushilwiz/Projects/selenium/webscraper.py -/home/rushilwiz/Projects/chirper/README.md -/home/rushilwiz/Projects/chirper/chirper -/home/rushilwiz/Projects/chirper/chirper/db.sqlite3 -/home/rushilwiz/Projects/chirper/chirper/users -/home/rushilwiz/Projects/chirper/chirper/blog -/home/rushilwiz/Projects/chirper/chirper/manage.py -/home/rushilwiz/Projects/chirper/chirper/media -/home/rushilwiz/Projects/chirper/chirper/chirper -/home/rushilwiz/Projects/chirper/chirper/file.html -/home/rushilwiz/Projects/chirper/chirper/users/migrations -/home/rushilwiz/Projects/chirper/chirper/users/__init__.py -/home/rushilwiz/Projects/chirper/chirper/users/tests.py -/home/rushilwiz/Projects/chirper/chirper/users/models.py -/home/rushilwiz/Projects/chirper/chirper/users/apps.py -/home/rushilwiz/Projects/chirper/chirper/users/admin.py -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__ -/home/rushilwiz/Projects/chirper/chirper/users/views.py -/home/rushilwiz/Projects/chirper/chirper/users/forms.py -/home/rushilwiz/Projects/chirper/chirper/users/signals.py -/home/rushilwiz/Projects/chirper/chirper/users/templates -/home/rushilwiz/Projects/chirper/chirper/users/migrations/__init__.py -/home/rushilwiz/Projects/chirper/chirper/users/migrations/0001_initial.py -/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__ -/home/rushilwiz/Projects/chirper/chirper/users/migrations/0002_auto_20200526_0344.py -/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__/0001_initial.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__/0002_auto_20200526_0344.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/migrations/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/admin.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/forms.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/signals.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/models.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/apps.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/views.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/urls.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/users/templates/users -/home/rushilwiz/Projects/chirper/chirper/users/templates/users/login.html -/home/rushilwiz/Projects/chirper/chirper/users/templates/users/profile.html -/home/rushilwiz/Projects/chirper/chirper/users/templates/users/logout.html -/home/rushilwiz/Projects/chirper/chirper/blog/migrations -/home/rushilwiz/Projects/chirper/chirper/blog/__init__.py -/home/rushilwiz/Projects/chirper/chirper/blog/tests.py -/home/rushilwiz/Projects/chirper/chirper/blog/models.py -/home/rushilwiz/Projects/chirper/chirper/blog/apps.py -/home/rushilwiz/Projects/chirper/chirper/blog/admin.py -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__ -/home/rushilwiz/Projects/chirper/chirper/blog/views.py -/home/rushilwiz/Projects/chirper/chirper/blog/static -/home/rushilwiz/Projects/chirper/chirper/blog/urls.py -/home/rushilwiz/Projects/chirper/chirper/blog/templates -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__init__.py -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/0002_auto_20200430_0415.py -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/0001_initial.py -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__ -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/0003_remove_post_title.py -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/0002_auto_20200430_0415.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/0001_initial.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/0003_remove_post_title.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/migrations/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/admin.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/models.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/apps.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/views.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/urls.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/blog/static/android-chrome-192x192.png:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/favicon.ico:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/android-chrome-512x512.png:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/favicon-16x16.png:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI Bold Italic.ttf:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/site.webmanifest -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog -/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI.ttf:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI Italic.ttf:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/site.webmanifest:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/apple-touch-icon.png:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/Segoe UI Bold.ttf:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/favicon-32x32.png:Zone.Identifier -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/futura.ttf -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI.ttf -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI Italic.ttf -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI Bold Italic.ttf -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/styles.css -/home/rushilwiz/Projects/chirper/chirper/blog/static/blog/Segoe UI Bold.ttf -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/user_posts.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/post_detail.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/post_confirm_delete.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/home.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/about.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/post_form.html -/home/rushilwiz/Projects/chirper/chirper/blog/templates/blog/base.html -/home/rushilwiz/Projects/chirper/chirper/media/profile_pics -/home/rushilwiz/Projects/chirper/chirper/chirper/wsgi.py -/home/rushilwiz/Projects/chirper/chirper/chirper/__init__.py -/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__ -/home/rushilwiz/Projects/chirper/chirper/chirper/settings.py -/home/rushilwiz/Projects/chirper/chirper/chirper/asgi.py -/home/rushilwiz/Projects/chirper/chirper/chirper/urls.py -/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/wsgi.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/settings.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/urls.cpython-38.pyc -/home/rushilwiz/Projects/chirper/chirper/chirper/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/2023rumareti -/home/rushilwiz/SkoolOS/eharris1 -/home/rushilwiz/SkoolOS/LICENSE -/home/rushilwiz/SkoolOS/skoolos.py -/home/rushilwiz/SkoolOS/docs -/home/rushilwiz/SkoolOS/sstern1 -/home/rushilwiz/SkoolOS/bgservice -/home/rushilwiz/SkoolOS/README.md -/home/rushilwiz/SkoolOS/chromedriver -/home/rushilwiz/SkoolOS/CLI -/home/rushilwiz/SkoolOS/Website -/home/rushilwiz/SkoolOS/2023rumareti/README.md -/home/rushilwiz/SkoolOS/eharris1/History12_eharris1 -/home/rushilwiz/SkoolOS/eharris1/English12_eharris1 -/home/rushilwiz/SkoolOS/eharris1/History12_eharris1/README.md -/home/rushilwiz/SkoolOS/eharris1/English12_eharris1/Essay1 -/home/rushilwiz/SkoolOS/docs/build -/home/rushilwiz/SkoolOS/docs/source -/home/rushilwiz/SkoolOS/docs/Makefile -/home/rushilwiz/SkoolOS/docs/make.bat -/home/rushilwiz/SkoolOS/docs/build/html -/home/rushilwiz/SkoolOS/docs/build/doctrees -/home/rushilwiz/SkoolOS/docs/build/html/cli.html -/home/rushilwiz/SkoolOS/docs/build/html/objects.inv -/home/rushilwiz/SkoolOS/docs/build/html/genindex.html -/home/rushilwiz/SkoolOS/docs/build/html/license.html -/home/rushilwiz/SkoolOS/docs/build/html/search.html -/home/rushilwiz/SkoolOS/docs/build/html/_static -/home/rushilwiz/SkoolOS/docs/build/html/webapp.html -/home/rushilwiz/SkoolOS/docs/build/html/index.html -/home/rushilwiz/SkoolOS/docs/build/html/install.html -/home/rushilwiz/SkoolOS/docs/build/html/background_service.html -/home/rushilwiz/SkoolOS/docs/build/html/searchindex.js -/home/rushilwiz/SkoolOS/docs/build/html/_sources -/home/rushilwiz/SkoolOS/docs/build/html/_static/searchtools.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/alabaster.css -/home/rushilwiz/SkoolOS/docs/build/html/_static/pygments.css -/home/rushilwiz/SkoolOS/docs/build/html/_static/language_data.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/basic.css -/home/rushilwiz/SkoolOS/docs/build/html/_static/doctools.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/jquery.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/underscore.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/underscore-1.3.1.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/custom.css -/home/rushilwiz/SkoolOS/docs/build/html/_static/jquery-3.5.1.js -/home/rushilwiz/SkoolOS/docs/build/html/_static/documentation_options.js -/home/rushilwiz/SkoolOS/docs/build/doctrees/background_service.doctree -/home/rushilwiz/SkoolOS/docs/build/doctrees/license.doctree -/home/rushilwiz/SkoolOS/docs/build/doctrees/environment.pickle -/home/rushilwiz/SkoolOS/docs/build/doctrees/install.doctree -/home/rushilwiz/SkoolOS/docs/build/doctrees/index.doctree -/home/rushilwiz/SkoolOS/docs/build/doctrees/cli.doctree -/home/rushilwiz/SkoolOS/docs/build/doctrees/webapp.doctree -/home/rushilwiz/SkoolOS/docs/source/license.rst -/home/rushilwiz/SkoolOS/docs/source/_static -/home/rushilwiz/SkoolOS/docs/source/cli.rst -/home/rushilwiz/SkoolOS/docs/source/_templates -/home/rushilwiz/SkoolOS/docs/source/conf.py -/home/rushilwiz/SkoolOS/docs/source/webapp.rst -/home/rushilwiz/SkoolOS/docs/source/install.rst -/home/rushilwiz/SkoolOS/docs/source/background_service.rst -/home/rushilwiz/SkoolOS/docs/source/index.rst -/home/rushilwiz/SkoolOS/sstern1/Students -/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1 -/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/2023rumareti -/home/rushilwiz/SkoolOS/sstern1/Students/wow4_sstern1/2023rumareti/README.md -/home/rushilwiz/SkoolOS/bgservice/__init__.py -/home/rushilwiz/SkoolOS/bgservice/SkoolOS -/home/rushilwiz/SkoolOS/bgservice/__pycache__ -/home/rushilwiz/SkoolOS/bgservice/run.py -/home/rushilwiz/SkoolOS/bgservice/bgservice.py -/home/rushilwiz/SkoolOS/bgservice/test.py -/home/rushilwiz/SkoolOS/bgservice/checker.py -/home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs -/home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs/skoolos_06162020-211153 -/home/rushilwiz/SkoolOS/bgservice/SkoolOS/logs/skoolos_06162020-210523 -/home/rushilwiz/SkoolOS/bgservice/__pycache__/checker.cpython-38.pyc -/home/rushilwiz/SkoolOS/bgservice/__pycache__/bgservice.cpython-38.pyc -/home/rushilwiz/SkoolOS/chromedriver/chromedriver.exe -/home/rushilwiz/SkoolOS/chromedriver/chromedriver-linux -/home/rushilwiz/SkoolOS/chromedriver/chromedriver-mac -/home/rushilwiz/SkoolOS/CLI/teacher.py -/home/rushilwiz/SkoolOS/CLI/__pycache__ -/home/rushilwiz/SkoolOS/CLI/student.py -/home/rushilwiz/SkoolOS/CLI/__pycache__/student.cpython-38.pyc -/home/rushilwiz/SkoolOS/CLI/__pycache__/teacher.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api -/home/rushilwiz/SkoolOS/Website/db.sqlite3 -/home/rushilwiz/SkoolOS/Website/users -/home/rushilwiz/SkoolOS/Website/manage.py -/home/rushilwiz/SkoolOS/Website/skoolos -/home/rushilwiz/SkoolOS/Website/config -/home/rushilwiz/SkoolOS/Website/templates -/home/rushilwiz/SkoolOS/Website/api/migrations -/home/rushilwiz/SkoolOS/Website/api/__init__.py -/home/rushilwiz/SkoolOS/Website/api/serializers.py -/home/rushilwiz/SkoolOS/Website/api/views-back.py -/home/rushilwiz/SkoolOS/Website/api/tests.py -/home/rushilwiz/SkoolOS/Website/api/models.py -/home/rushilwiz/SkoolOS/Website/api/apps.py -/home/rushilwiz/SkoolOS/Website/api/admin.py -/home/rushilwiz/SkoolOS/Website/api/maker.py -/home/rushilwiz/SkoolOS/Website/api/__pycache__ -/home/rushilwiz/SkoolOS/Website/api/auth.py -/home/rushilwiz/SkoolOS/Website/api/views.py -/home/rushilwiz/SkoolOS/Website/api/signals.py -/home/rushilwiz/SkoolOS/Website/api/permissions.py -/home/rushilwiz/SkoolOS/Website/api/urls.py -/home/rushilwiz/SkoolOS/Website/api/migrations/__init__.py -/home/rushilwiz/SkoolOS/Website/api/migrations/0001_initial.py -/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__ -/home/rushilwiz/SkoolOS/Website/api/migrations/0003_student_log.py -/home/rushilwiz/SkoolOS/Website/api/migrations/0002_auto_20200616_2012.py -/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__/0001_initial.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__/0003_student_log.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__/0002_auto_20200616_2012.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/migrations/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/admin.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/models.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/permissions.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/views.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/serializers.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/api/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/migrations -/home/rushilwiz/SkoolOS/Website/users/__init__.py -/home/rushilwiz/SkoolOS/Website/users/tests.py -/home/rushilwiz/SkoolOS/Website/users/models.py -/home/rushilwiz/SkoolOS/Website/users/apps.py -/home/rushilwiz/SkoolOS/Website/users/admin.py -/home/rushilwiz/SkoolOS/Website/users/__pycache__ -/home/rushilwiz/SkoolOS/Website/users/views.py -/home/rushilwiz/SkoolOS/Website/users/forms.py -/home/rushilwiz/SkoolOS/Website/users/pwd.py -/home/rushilwiz/SkoolOS/Website/users/static -/home/rushilwiz/SkoolOS/Website/users/templates -/home/rushilwiz/SkoolOS/Website/users/migrations/__init__.py -/home/rushilwiz/SkoolOS/Website/users/migrations/0001_initial.py -/home/rushilwiz/SkoolOS/Website/users/migrations/__pycache__ -/home/rushilwiz/SkoolOS/Website/users/migrations/__pycache__/0001_initial.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/migrations/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/admin.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/forms.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/models.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/apps.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/views.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/users/static/users -/home/rushilwiz/SkoolOS/Website/users/static/users/styles.css -/home/rushilwiz/SkoolOS/Website/users/templates/users -/home/rushilwiz/SkoolOS/Website/users/templates/users/login.html -/home/rushilwiz/SkoolOS/Website/users/templates/users/create_account.html -/home/rushilwiz/SkoolOS/Website/users/templates/users/register.html -/home/rushilwiz/SkoolOS/Website/users/templates/users/base.html -/home/rushilwiz/SkoolOS/Website/skoolos/__init__.py -/home/rushilwiz/SkoolOS/Website/skoolos/tests.py -/home/rushilwiz/SkoolOS/Website/skoolos/models.py -/home/rushilwiz/SkoolOS/Website/skoolos/apps.py -/home/rushilwiz/SkoolOS/Website/skoolos/admin.py -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__ -/home/rushilwiz/SkoolOS/Website/skoolos/views.py -/home/rushilwiz/SkoolOS/Website/skoolos/forms.py -/home/rushilwiz/SkoolOS/Website/skoolos/static -/home/rushilwiz/SkoolOS/Website/skoolos/urls.py -/home/rushilwiz/SkoolOS/Website/skoolos/templates -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/admin.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/forms.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/models.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/apps.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/views.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/urls.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/futura.ttf -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI.ttf -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI Italic.ttf -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI Bold Italic.ttf -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/styles.css -/home/rushilwiz/SkoolOS/Website/skoolos/static/skoolos/Segoe UI Bold.ttf -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/profile_teacher.html -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/class_detail.html -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/profile_student.html -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/createClass.html -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/home.html -/home/rushilwiz/SkoolOS/Website/skoolos/templates/skoolos/base.html -/home/rushilwiz/SkoolOS/Website/config/wsgi.py -/home/rushilwiz/SkoolOS/Website/config/__init__.py -/home/rushilwiz/SkoolOS/Website/config/__pycache__ -/home/rushilwiz/SkoolOS/Website/config/settings.py -/home/rushilwiz/SkoolOS/Website/config/asgi.py -/home/rushilwiz/SkoolOS/Website/config/urls.py -/home/rushilwiz/SkoolOS/Website/config/__pycache__/wsgi.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/config/__pycache__/settings.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/config/__pycache__/urls.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/config/__pycache__/__init__.cpython-38.pyc -/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider -/home/rushilwiz/SkoolOS/Website/templates/base.html -/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider/login.html -/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider/authorize.html -/home/rushilwiz/SkoolOS/Website/templates/oauth2_provider/logged_out.html -/home/rushilwiz/idafree-7.0/qt.conf -/home/rushilwiz/idafree-7.0/uninstall.dat -/home/rushilwiz/idafree-7.0/assistant -/home/rushilwiz/idafree-7.0/ida.hlp -/home/rushilwiz/idafree-7.0/idc -/home/rushilwiz/idafree-7.0/libida64.so -/home/rushilwiz/idafree-7.0/loaders -/home/rushilwiz/idafree-7.0/libX11-xcb.so.1 -/home/rushilwiz/idafree-7.0/sig -/home/rushilwiz/idafree-7.0/libQt5Gui.so.5 -/home/rushilwiz/idafree-7.0/libQt5XcbQpa.so.5 -/home/rushilwiz/idafree-7.0/libQt5DBus.so.5 -/home/rushilwiz/idafree-7.0/libclpx.so -/home/rushilwiz/idafree-7.0/uninstall -/home/rushilwiz/idafree-7.0/ida64 -/home/rushilwiz/idafree-7.0/libQt5Network.so.5 -/home/rushilwiz/idafree-7.0/libQt5CLucene.so.5 -/home/rushilwiz/idafree-7.0/ida64.int -/home/rushilwiz/idafree-7.0/procs -/home/rushilwiz/idafree-7.0/ids -/home/rushilwiz/idafree-7.0/cfg -/home/rushilwiz/idafree-7.0/til -/home/rushilwiz/idafree-7.0/libQt5Widgets.so.5 -/home/rushilwiz/idafree-7.0/libQt5Help.so.5 -/home/rushilwiz/idafree-7.0/qidahelpcollection.qhc -/home/rushilwiz/idafree-7.0/dbgsrv -/home/rushilwiz/idafree-7.0/libQt5PrintSupport.so.5 -/home/rushilwiz/idafree-7.0/qidahelp.qch -/home/rushilwiz/idafree-7.0/libQt5Sql.so.5 -/home/rushilwiz/idafree-7.0/libQt5Core.so.5 -/home/rushilwiz/idafree-7.0/plugins -/home/rushilwiz/idafree-7.0/Uninstall IDA Freeware 7.0.desktop -/home/rushilwiz/idafree-7.0/libdwarfx.so -/home/rushilwiz/idafree-7.0/idc/idc.idc -/home/rushilwiz/idafree-7.0/loaders/pe64.so -/home/rushilwiz/idafree-7.0/loaders/macho64.so -/home/rushilwiz/idafree-7.0/loaders/elf64.so -/home/rushilwiz/idafree-7.0/sig/list -/home/rushilwiz/idafree-7.0/sig/pc -/home/rushilwiz/idafree-7.0/sig/pc/vc64mfc.sig -/home/rushilwiz/idafree-7.0/sig/pc/msmfc64d.sig -/home/rushilwiz/idafree-7.0/sig/pc/msmfc64.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64_14.sig -/home/rushilwiz/idafree-7.0/sig/pc/ms64wdk.sig -/home/rushilwiz/idafree-7.0/sig/pc/bcb5rt.sig -/home/rushilwiz/idafree-7.0/sig/pc/msmfc64u.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc32rtf.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64atl.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64rtf.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64ucrt.sig -/home/rushilwiz/idafree-7.0/sig/pc/iclapp64.sig -/home/rushilwiz/idafree-7.0/sig/pc/mssdk64.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64extra.sig -/home/rushilwiz/idafree-7.0/sig/pc/win64unx.sig -/home/rushilwiz/idafree-7.0/sig/pc/vcseh.sig -/home/rushilwiz/idafree-7.0/sig/pc/vc64seh.sig -/home/rushilwiz/idafree-7.0/sig/pc/pe64.sig -/home/rushilwiz/idafree-7.0/procs/pc64.so -/home/rushilwiz/idafree-7.0/ids/win7.zip -/home/rushilwiz/idafree-7.0/ids/idsnames -/home/rushilwiz/idafree-7.0/cfg/exceptions.cfg -/home/rushilwiz/idafree-7.0/cfg/idagui.cfg -/home/rushilwiz/idafree-7.0/cfg/ida.cfg -/home/rushilwiz/idafree-7.0/til/gnuunx64.til -/home/rushilwiz/idafree-7.0/til/pc -/home/rushilwiz/idafree-7.0/til/macosx64.til -/home/rushilwiz/idafree-7.0/til/pc/gnulnx_x64.til -/home/rushilwiz/idafree-7.0/til/pc/ntddk64.til -/home/rushilwiz/idafree-7.0/til/pc/vc6win.til -/home/rushilwiz/idafree-7.0/til/pc/vc10_64.til -/home/rushilwiz/idafree-7.0/til/pc/mssdk.til -/home/rushilwiz/idafree-7.0/til/pc/vc8amd64.til -/home/rushilwiz/idafree-7.0/til/pc/bcb5win.til -/home/rushilwiz/idafree-7.0/plugins/bdescr64.so -/home/rushilwiz/idafree-7.0/plugins/platformthemes -/home/rushilwiz/idafree-7.0/plugins/plugins.cfg -/home/rushilwiz/idafree-7.0/plugins/tds64.so -/home/rushilwiz/idafree-7.0/plugins/objc64.so -/home/rushilwiz/idafree-7.0/plugins/dwarf64.so -/home/rushilwiz/idafree-7.0/plugins/linux_user64.so -/home/rushilwiz/idafree-7.0/plugins/platforms -/home/rushilwiz/idafree-7.0/plugins/dbg64.so -/home/rushilwiz/idafree-7.0/plugins/platformthemes/libqgtk2.so -/home/rushilwiz/idafree-7.0/plugins/platforms/libqoffscreen.so -/home/rushilwiz/idafree-7.0/plugins/platforms/libqminimal.so -/home/rushilwiz/idafree-7.0/plugins/platforms/libqlinuxfb.so -/home/rushilwiz/idafree-7.0/plugins/platforms/libqxcb.so -/home/rushilwiz/Documents/Google Web Designer -/home/rushilwiz/Documents/login.html -/home/rushilwiz/Documents/GitHub -/home/rushilwiz/Documents/the_r_ontheledgeandshit_starterpack.kra -/home/rushilwiz/Documents/Google Web Designer/templates -/home/rushilwiz/Documents/GitHub/crucialnet -/home/rushilwiz/Documents/GitHub/crucialnet/post_templates -/home/rushilwiz/Documents/GitHub/crucialnet/server -/home/rushilwiz/Documents/GitHub/crucialnet/site -/home/rushilwiz/Documents/GitHub/crucialnet/README.md -/home/rushilwiz/Documents/GitHub/crucialnet/testing -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction -/home/rushilwiz/Documents/GitHub/crucialnet/ssl -/home/rushilwiz/Documents/GitHub/crucialnet/post_templates/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/server/pswd.exe -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives -/home/rushilwiz/Documents/GitHub/crucialnet/site/site.webmanifest -/home/rushilwiz/Documents/GitHub/crucialnet/site/js -/home/rushilwiz/Documents/GitHub/crucialnet/site/404 -/home/rushilwiz/Documents/GitHub/crucialnet/site/browserconfig.xml -/home/rushilwiz/Documents/GitHub/crucialnet/site/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/resume -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me -/home/rushilwiz/Documents/GitHub/crucialnet/site/css -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/style.css -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/images -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/backgrounds -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/card-images -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/poststyle.css -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/2019 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/2019/01 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/posts/2019/01/05 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/card-images/fmu.PNG -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/card-images/inbom.PNG -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts/Gotham-Bold.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts/Sans-Thin.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/res/fonts/futura-pt-light.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019/01 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019/01/05 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2019/01/05/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018/12 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018/12/22 -/home/rushilwiz/Documents/GitHub/crucialnet/site/the-archives/2018/12/22/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/js/main.js -/home/rushilwiz/Documents/GitHub/crucialnet/site/404/style.css -/home/rushilwiz/Documents/GitHub/crucialnet/site/404/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/site.webmanifest -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/js -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/browserconfig.xml -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/js/main.js -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/style.css -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/fonts -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/fonts/Gotham-Bold.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/contact-me/css/fonts/Sans-Thin.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/style.css -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/res -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/Gotham-Bold.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/Proxima Nova Alt Light.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/Sans-Thin.otf -/home/rushilwiz/Documents/GitHub/crucialnet/site/css/fonts/futura-pt-light.otf -/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog -/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar/style.css -/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/testing/responsive_navbar/main.js -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/page1.html -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/TEMPLATE -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019 -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/images -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/backgrounds -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/card-images -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/card-images/fm2u.PNG -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts/Gotham-Bold.otf -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts/Sans-Thin.otf -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/res/fonts/futura-pt-light.otf -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/TEMPLATE/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019/01 -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019/01/01 -/home/rushilwiz/Documents/GitHub/crucialnet/testing/blog/2019/01/01/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/js -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/index.html -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/css -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/js/index.js -/home/rushilwiz/Documents/GitHub/crucialnet/under_construction/css/styles.css -/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105 -/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg.vmdk -/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg-configdrive.vmdk -/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105.vbox-prev -/home/rushilwiz/VirtualBox VMs/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105/ubuntu-bionic-18.04-cloudimg-20200427_1588184157565_96105.vbox -/home/rushilwiz/crucialnet/the-archives -/home/rushilwiz/crucialnet/site.webmanifest -/home/rushilwiz/crucialnet/js -/home/rushilwiz/crucialnet/404 -/home/rushilwiz/crucialnet/browserconfig.xml -/home/rushilwiz/crucialnet/index.html -/home/rushilwiz/crucialnet/resume -/home/rushilwiz/crucialnet/README.md -/home/rushilwiz/crucialnet/contact-me -/home/rushilwiz/crucialnet/css -/home/rushilwiz/crucialnet/the-archives/res -/home/rushilwiz/crucialnet/the-archives/index.html -/home/rushilwiz/crucialnet/the-archives/2019 -/home/rushilwiz/crucialnet/the-archives/post-template.html -/home/rushilwiz/crucialnet/the-archives/2018 -/home/rushilwiz/crucialnet/the-archives/res/style.css -/home/rushilwiz/crucialnet/the-archives/res/images -/home/rushilwiz/crucialnet/the-archives/res/backgrounds -/home/rushilwiz/crucialnet/the-archives/res/posts -/home/rushilwiz/crucialnet/the-archives/res/card-images -/home/rushilwiz/crucialnet/the-archives/res/fonts -/home/rushilwiz/crucialnet/the-archives/res/posts/poststyle.css -/home/rushilwiz/crucialnet/the-archives/res/posts/2019 -/home/rushilwiz/crucialnet/the-archives/res/posts/2019/01 -/home/rushilwiz/crucialnet/the-archives/res/posts/2019/01/05 -/home/rushilwiz/crucialnet/the-archives/res/card-images/fmu.PNG -/home/rushilwiz/crucialnet/the-archives/res/card-images/inbom.PNG -/home/rushilwiz/crucialnet/the-archives/res/fonts/Gotham-Bold.otf -/home/rushilwiz/crucialnet/the-archives/res/fonts/Sans-Thin.otf -/home/rushilwiz/crucialnet/the-archives/res/fonts/futura-pt-light.otf -/home/rushilwiz/crucialnet/the-archives/2019/01 -/home/rushilwiz/crucialnet/the-archives/2019/01/05 -/home/rushilwiz/crucialnet/the-archives/2019/01/05/index.html -/home/rushilwiz/crucialnet/the-archives/2018/12 -/home/rushilwiz/crucialnet/the-archives/2018/12/22 -/home/rushilwiz/crucialnet/the-archives/2018/12/22/index.html -/home/rushilwiz/crucialnet/js/main.js -/home/rushilwiz/crucialnet/404/style.css -/home/rushilwiz/crucialnet/404/index.html -/home/rushilwiz/crucialnet/contact-me/site.webmanifest -/home/rushilwiz/crucialnet/contact-me/js -/home/rushilwiz/crucialnet/contact-me/browserconfig.xml -/home/rushilwiz/crucialnet/contact-me/index.html -/home/rushilwiz/crucialnet/contact-me/css -/home/rushilwiz/crucialnet/contact-me/js/main.js -/home/rushilwiz/crucialnet/contact-me/css/style.css -/home/rushilwiz/crucialnet/contact-me/css/fonts -/home/rushilwiz/crucialnet/contact-me/css/fonts/Gotham-Bold.otf -/home/rushilwiz/crucialnet/contact-me/css/fonts/Sans-Thin.otf -/home/rushilwiz/crucialnet/css/style.css -/home/rushilwiz/crucialnet/css/res -/home/rushilwiz/crucialnet/css/fonts -/home/rushilwiz/crucialnet/css/fonts/Gotham-Bold.otf -/home/rushilwiz/crucialnet/css/fonts/Proxima Nova Alt Light.otf -/home/rushilwiz/crucialnet/css/fonts/Sans-Thin.otf -/home/rushilwiz/crucialnet/css/fonts/futura-pt-light.otf -/home/rushilwiz/brancher/login.html -/home/rushilwiz/brancher/js -/home/rushilwiz/brancher/404 -/home/rushilwiz/brancher/sliders.html -/home/rushilwiz/brancher/index.html -/home/rushilwiz/brancher/README.md -/home/rushilwiz/brancher/css -/home/rushilwiz/brancher/under_construction -/home/rushilwiz/brancher/index2.html -/home/rushilwiz/brancher/login2.html -/home/rushilwiz/brancher/js/login.js -/home/rushilwiz/brancher/js/main.js -/home/rushilwiz/brancher/404/style.css -/home/rushilwiz/brancher/404/index.html -/home/rushilwiz/brancher/css/styles.css.map -/home/rushilwiz/brancher/css/styles.scss -/home/rushilwiz/brancher/css/res -/home/rushilwiz/brancher/css/styles.css -/home/rushilwiz/brancher/css/fonts -/home/rushilwiz/brancher/css/login.css -/home/rushilwiz/brancher/css/fonts/Gotham-Bold.otf -/home/rushilwiz/brancher/css/fonts/Sans-Thin.otf -/home/rushilwiz/brancher/css/fonts/Coves Light.otf -/home/rushilwiz/brancher/css/fonts/futura-pt-light.otf -/home/rushilwiz/brancher/under_construction/js -/home/rushilwiz/brancher/under_construction/index.html -/home/rushilwiz/brancher/under_construction/css -/home/rushilwiz/brancher/under_construction/js/index.js -/home/rushilwiz/brancher/under_construction/css/styles.css diff --git a/bgservice/bgservice.py b/bgservice/bgservice.py index 5205fd4..7b3b8c2 100644 --- a/bgservice/bgservice.py +++ b/bgservice/bgservice.py @@ -7,10 +7,184 @@ import time import sys import os import pyinotify -from . import checker from pathlib import Path +from glob import glob +NOTIFIER = None +STDOUT = sys.stdout +DIR = None +START_TIME = None + + +def watch_dir(watched_dir=str(Path.home()), log_dir="SkoolOS/logs"): + """ + Watches the specified directory for changes and outputs it in + human readable format to a log file in the specified log directory. + param watched_dir: directory to watch for changes + param log_dir: directory to store log files + return: none + """ + global DIR + global START_TIME + global NOTIFIER + DIR = watched_dir + if not os.path.exists(log_dir): + os.makedirs(log_dir) + logfile_ = log_dir + "/skooloslog" + if os.path.isfile(logfile_): + os.remove(logfile_) + logfile = open(logfile_, 'w') + START_TIME = time.time() + wm = pyinotify.WatchManager() + mask = pyinotify.IN_CREATE | pyinotify.IN_CLOSE_WRITE | pyinotify.IN_DELETE | \ + pyinotify.IN_MOVED_TO | pyinotify.IN_MOVED_FROM | pyinotify.IN_OPEN + NOTIFIER = pyinotify.ThreadedNotifier(wm, EventHandler()) + NOTIFIER.start() + sys.stdout = open("/dev/null", 'w') + wm.add_watch(watched_dir, mask, rec=True) + time.sleep(1) + sys.stdout = logfile + print("Start time: " + + time.strftime("%A, %B %d, %Y %H:%M:%S", time.localtime()) + "\n") + + +def stop_watching(): + """ + Stops the watch started by watch_dir() + return: none + """ + NOTIFIER.stop() + now = time.time() + print("End time: " + + time.strftime("%A, %B %d, %Y %H:%M:%S", time.localtime())) + print("\nTotal work time: " + + time.strftime("%H:%M:%S", time.gmtime(now - START_TIME))) + print("\n" + shell_check()) + suspicious_files = file_check(DIR) + if suspicious_files != []: + print( + "\n\n--------------------------------------------------\n\n\n" + + "WARNING: One or more file did not have file extensions that are acceptable.\n" + + "The paths to these files are listed below:\n") + print(*suspicious_files, sep='\n') + sys.stdout = STDOUT + +file_whitelist = [ + # text and document files + ".doc", + ".docx", + ".odt", + ".pdf", + ".rtf", + ".tex", + ".txt", + ".wpd", + # video files + ".3g2", + ".3gp", + ".avi", + ".flv", + ".h264", + ".m4v", + ".mkv", + ".mov", + ".mp4", + ".mpg", + ".mpeg", + ".rm", + ".swf", + ".vob", + ".wmv", + # spreadsheet files + ".ods", + ".xls", + ".xlsm", + ".xlsx", + ".csv", + # programming files + ".c", + ".class", + ".cpp", + ".cs", + ".go", + ".h", + ".java", + ".pl", + ".sh", + ".swift", + ".vb", + # presentation files + ".key", + ".odp", + ".pps", + ".ppt", + ".pptx", + # image files + ".ai", + ".bmp", + ".gif", + ".ico", + ".jpeg", + ".jpg", + ".png", + ".ps", + ".psd", + ".svg", + ".tif", + ".tiff", +] + + +def shell_check(): + """ + Check .bash_history and .histfile for git commands that could interfere with SkoolOS + return: results of the check + """ + bash_history = [ + line.strip() + for line in open(os.path.expanduser("~/.bash_history"), 'r') + ] + zsh_history = [ + line.strip() for line in open(os.path.expanduser("~/.histfile"), 'r') + ] + suspicious_commands = [] + for i in bash_history + zsh_history: + if "git" in i: + suspicious_commands.append(i) + if suspicious_commands: + return str( + len(suspicious_commands) + ) + " suspicious commands found:\n" + "\n".join(suspicious_commands) + return "Nothing suspicious found in bash or zsh history." + + +def verify_file(file_): + """ + Check if the file name has an extension in the list of whitelisted file exentsions + param file_: path to file + return: whether or not the file's extension is whitelisted + """ + for ext in file_whitelist: + if len(file_) > len(ext): + if file_[len(file_) - len(ext):] == ext: + return True + return False + + +def file_check(dir_): + """ + Checks specified dir_ for non-whitelisted files using verify_file() + param dir_: directory to check + return: list of suspicious files + """ + files = glob(dir_ + "/**/*", recursive=True) + suspicious_files = [] + for file_ in files: + if not verify_file(file_): + suspicious_files.append(file_) + return suspicious_files + class EventHandler(pyinotify.ProcessEvent): """ Custom event handler for watching a SkoolOS work directory @@ -113,63 +287,3 @@ class EventHandler(pyinotify.ProcessEvent): time.strftime("%A, %B %d, %Y %H:%M:%S", time.localtime()) ) print(description) - - -NOTIFIER = None -STDOUT = sys.stdout -DIR = None -START_TIME = None - - -def watch_dir(watched_dir=str(Path.home()), log_dir="SkoolOS/logs"): - """ - Watches the specified directory for changes and outputs it in - human readable format to a log file in the specified log directory. - param watched_dir: directory to watch for changes - param log_dir: directory to store log files - return: none - """ - global DIR - global START_TIME - global NOTIFIER - DIR = watched_dir - if not os.path.exists(log_dir): - os.makedirs(log_dir) - logfile_ = log_dir + "/skooloslog" - if os.path.isfile(logfile_): - os.remove(logfile_) - logfile = open(logfile_, 'w') - START_TIME = time.time() - wm = pyinotify.WatchManager() - mask = pyinotify.IN_CREATE | pyinotify.IN_CLOSE_WRITE | pyinotify.IN_DELETE | \ - pyinotify.IN_MOVED_TO | pyinotify.IN_MOVED_FROM | pyinotify.IN_OPEN - NOTIFIER = pyinotify.ThreadedNotifier(wm, EventHandler()) - NOTIFIER.start() - sys.stdout = open("/dev/null", 'w') - wm.add_watch(watched_dir, mask, rec=True) - time.sleep(1) - sys.stdout = logfile - print("Start time: " + - time.strftime("%A, %B %d, %Y %H:%M:%S", time.localtime()) + "\n") - - -def stop_watching(): - """ - Stops the watch started by watch_dir() - return: none - """ - NOTIFIER.stop() - now = time.time() - print("End time: " + - time.strftime("%A, %B %d, %Y %H:%M:%S", time.localtime())) - print("\nTotal work time: " + - time.strftime("%H:%M:%S", time.gmtime(now - START_TIME))) - print("\n" + checker.shell_check()) - suspicious_files = checker.file_check(DIR) - if suspicious_files != []: - print( - "\n\n--------------------------------------------------\n\n\n" + - "WARNING: One or more file did not have file extensions that are acceptable.\n" - + "The paths to these files are listed below:\n") - print(*suspicious_files, sep='\n') - sys.stdout = STDOUT diff --git a/bgservice/checker.py b/bgservice/checker.py deleted file mode 100644 index 9f8941f..0000000 --- a/bgservice/checker.py +++ /dev/null @@ -1,117 +0,0 @@ -import os -from glob import glob - -file_whitelist = [ - # text and document files - ".doc", - ".docx", - ".odt", - ".pdf", - ".rtf", - ".tex", - ".txt", - ".wpd", - # video files - ".3g2", - ".3gp", - ".avi", - ".flv", - ".h264", - ".m4v", - ".mkv", - ".mov", - ".mp4", - ".mpg", - ".mpeg", - ".rm", - ".swf", - ".vob", - ".wmv", - # spreadsheet files - ".ods", - ".xls", - ".xlsm", - ".xlsx", - ".csv", - # programming files - ".c", - ".class", - ".cpp", - ".cs", - ".go", - ".h", - ".java", - ".pl", - ".sh", - ".swift", - ".vb", - # presentation files - ".key", - ".odp", - ".pps", - ".ppt", - ".pptx", - # image files - ".ai", - ".bmp", - ".gif", - ".ico", - ".jpeg", - ".jpg", - ".png", - ".ps", - ".psd", - ".svg", - ".tif", - ".tiff", -] - - -def shell_check(): - """ - Check .bash_history and .histfile for git commands that could interfere with SkoolOS - return: results of the check - """ - bash_history = [ - line.strip() - for line in open(os.path.expanduser("~/.bash_history"), 'r') - ] - zsh_history = [ - line.strip() for line in open(os.path.expanduser("~/.histfile"), 'r') - ] - suspicious_commands = [] - for i in bash_history + zsh_history: - if "git" in i: - suspicious_commands.append(i) - if suspicious_commands: - return str( - len(suspicious_commands) - ) + " suspicious commands found:\n" + "\n".join(suspicious_commands) - return "Nothing suspicious found in bash or zsh history." - - -def verify_file(file_): - """ - Check if the file name has an extension in the list of whitelisted file exentsions - param file_: path to file - return: whether or not the file's extension is whitelisted - """ - for ext in file_whitelist: - if len(file_) > len(ext): - if file_[len(file_) - len(ext):] == ext: - return True - return False - - -def file_check(dir_): - """ - Checks specified dir_ for non-whitelisted files using verify_file() - param dir_: directory to check - return: list of suspicious files - """ - files = glob(dir_ + "/**/*", recursive=True) - suspicious_files = [] - for file_ in files: - if not verify_file(file_): - suspicious_files.append(file_) - return suspicious_files diff --git a/rushilwiz b/rushilwiz index b80d7ed..d9cbcc1 160000 --- a/rushilwiz +++ b/rushilwiz @@ -1 +1 @@ -Subproject commit b80d7ed56b7d649a74be4e7f906d26e7be43702d +Subproject commit d9cbcc1e6dd8907bf856f30b4565018e48934abf From 5dbcd828b0b346d2526b1c9ef82dc42b45bd9577 Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 23:50:20 -0400 Subject: [PATCH 6/8] final push --- CLI/teacher.py | 2 +- Website/api/serializers.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CLI/teacher.py b/CLI/teacher.py index 348aa4d..616521b 100644 --- a/CLI/teacher.py +++ b/CLI/teacher.py @@ -569,7 +569,7 @@ class Teacher: 'due_date': str(due), 'owner':self.id } - postDB(self.username, self.password, ass, 'http://127.0.0.1:8000/api/assignments/') + print(postDB(self.username, self.password, ass, 'http://127.0.0.1:8000/api/assignments/')) course['assignments'].append(oname) cinfo = { diff --git a/Website/api/serializers.py b/Website/api/serializers.py index 077a634..d4ff4ad 100644 --- a/Website/api/serializers.py +++ b/Website/api/serializers.py @@ -25,7 +25,7 @@ class AssignmentSerializer(serializers.HyperlinkedModelSerializer): class Meta: model = Assignment # fields = ['url','name', 'due_date', 'path' , "Class","teacher",'owner'] - fields = ['name', 'due_date', 'path' ,"teacher",'owner'] + fields = ['name', 'due_date', 'path' ,'teacher','owner'] class ClassSerializer(serializers.ModelSerializer): # assignments = AssignmentSerializer(many=True, read_only=True,allow_null=True) From 435cb2c0ef3c7e136b529b3ce5637aae870ddf02 Mon Sep 17 00:00:00 2001 From: rushilwiz Date: Tue, 16 Jun 2020 23:57:16 -0400 Subject: [PATCH 7/8] webapp --- docs/source/webapp.rst | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/source/webapp.rst b/docs/source/webapp.rst index 750e1fa..938948c 100644 --- a/docs/source/webapp.rst +++ b/docs/source/webapp.rst @@ -1,2 +1,15 @@ Django Web App -============= \ No newline at end of file +============= + +Installing: +------- +Package the Django app and run it on a remote server, to get started, +run a +.. code-block:: python + pip3 install -r requirements.text + python manage.py makemigrations api + python manage.py makemigrations users + python manage.py migrate + +Usage: +------ From 934295b60cd71fe64e26e11578ab3ce41402ffc0 Mon Sep 17 00:00:00 2001 From: rushilwiz Date: Tue, 16 Jun 2020 23:59:07 -0400 Subject: [PATCH 8/8] a --- .1.sstern1profile | 1 - .2023rumaretiprofile | 1 - .rushilwizprofile | 1 - .sstern1profile | 1 - bgservice.bgservice.html | 187 ------------------ bgservice.checker.html | 44 ----- bgservice.html | 23 --- rushilwiz | 1 - sstern1/2023clas8_sstern1/README.md | 0 sstern1/Students/wow4_sstern1/2023rumareti | 1 - sstern1/Students/wow4_sstern1/rushilwiz | 1 - sstern1/wow4_sstern1/Hackathon/fuck.txt | 0 sstern1/wow4_sstern1/Hailstone/Driver.java | 0 .../wow4_sstern1/Hailstone/instructions.txt | 1 - sstern1/wow4_sstern1/README.md | 0 15 files changed, 262 deletions(-) delete mode 100644 .1.sstern1profile delete mode 100644 .2023rumaretiprofile delete mode 100644 .rushilwizprofile delete mode 100644 .sstern1profile delete mode 100644 bgservice.bgservice.html delete mode 100644 bgservice.checker.html delete mode 100644 bgservice.html delete mode 160000 rushilwiz delete mode 100644 sstern1/2023clas8_sstern1/README.md delete mode 160000 sstern1/Students/wow4_sstern1/2023rumareti delete mode 160000 sstern1/Students/wow4_sstern1/rushilwiz delete mode 100644 sstern1/wow4_sstern1/Hackathon/fuck.txt delete mode 100644 sstern1/wow4_sstern1/Hailstone/Driver.java delete mode 100644 sstern1/wow4_sstern1/Hailstone/instructions.txt delete mode 100644 sstern1/wow4_sstern1/README.md diff --git a/.1.sstern1profile b/.1.sstern1profile deleted file mode 100644 index b141284..0000000 --- a/.1.sstern1profile +++ /dev/null @@ -1 +0,0 @@ -{"username": "eharris1", "is_student": false, "password": "hackgroup1"} \ No newline at end of file diff --git a/.2023rumaretiprofile b/.2023rumaretiprofile deleted file mode 100644 index 6df406f..0000000 --- a/.2023rumaretiprofile +++ /dev/null @@ -1 +0,0 @@ -{"username": "2022rkhondak", "grade": 9, "is_student": true, "password": "hackgroup1"} \ No newline at end of file diff --git a/.rushilwizprofile b/.rushilwizprofile deleted file mode 100644 index 303651c..0000000 --- a/.rushilwizprofile +++ /dev/null @@ -1 +0,0 @@ -{"username": "rushilwiz", "grade": 69, "is_student": true, "password": "a"} \ No newline at end of file diff --git a/.sstern1profile b/.sstern1profile deleted file mode 100644 index a51e01c..0000000 --- a/.sstern1profile +++ /dev/null @@ -1 +0,0 @@ -{"username": "sstern1", "is_student": false, "password": "Riya2011"} \ No newline at end of file diff --git a/bgservice.bgservice.html b/bgservice.bgservice.html deleted file mode 100644 index e422f56..0000000 --- a/bgservice.bgservice.html +++ /dev/null @@ -1,187 +0,0 @@ - -Python: module bgservice.bgservice - - - - - -
 
- 
bgservice.bgservice
index
/home/nkenschaft/Sysadmin/skoolos/bgservice/bgservice.py
-

A simple background service to log events in a directory,
-check for git commands in bash/zsh history,
-and check for non-whitelisted files in the watched directory.

-

- - - - - -
 
-Modules
       
bgservice.checker
-os
-
pyinotify
-sys
-
time
-

- - - - - -
 
-Classes
       
-
pyinotify.ProcessEvent(pyinotify._ProcessEvent) -
-
-
EventHandler -
-
-
-

- - - - - - - -
 
-class EventHandler(pyinotify.ProcessEvent)
   EventHandler(pevent=None, **kargs)

-Custom event handler for watching a SkoolOS work directory
 
 
Method resolution order:
-
EventHandler
-
pyinotify.ProcessEvent
-
pyinotify._ProcessEvent
-
builtins.object
-
-
-Methods defined here:
-
process_IN_CLOSE_WRITE(self, event)
Generates an output to record for IN_CLOSE_WRITE events
-param event: event automatically passed to function
-return: none
- -
process_IN_CREATE(self, event)
Generates an output to record for IN_CREATE events
-param event: event automatically passed to function
-return: none
- -
process_IN_DELETE(self, event)
Generates an output to record for IN_DELETE events
-param event: event automatically passed to function
-return: none
- -
process_IN_MOVED_FROM(self, event)
Generates an output to record for IN_MOVED_FROM events
-param event: event automatically passed to function
-return: none
- -
process_IN_MOVED_TO(self, event)
Generates an output to record for IN_MOVED_TO events
-param event: event automatically passed to function
-return: none
- -
process_IN_OPEN(self, event)
Generates an output to record for IN_OPEN events
-param event: event automatically passed to function
-return: none
- -
-Methods inherited from pyinotify.ProcessEvent:
-
__call__(self, event)
To behave like a functor the object must be callable.
-This method is a dispatch method. Its lookup order is:
-  1. process_MASKNAME method
-  2. process_FAMILY_NAME method
-  3. otherwise calls process_default

-@param event: Event to be processed.
-@type event: Event object
-@return: By convention when used from the ProcessEvent class:
-         - Returning False or None (default value) means keep on
-         executing next chained functors (see chain.py example).
-         - Returning True instead means do not execute next
-           processing functions.
-@rtype: bool
-@raise ProcessEventError: Event object undispatchable,
-                          unknown event.
- -
__init__(self, pevent=None, **kargs)
Enable chaining of ProcessEvent instances.

-@param pevent: Optional callable object, will be called on event
-               processing (before self).
-@type pevent: callable
-@param kargs: This constructor is implemented as a template method
-              delegating its optionals keyworded arguments to the
-              method my_init().
-@type kargs: dict
- -
my_init(self, **kargs)
This method is called from ProcessEvent.__init__(). This method is
-empty here and must be redefined to be useful. In effect, if you
-need to specifically initialize your subclass' instance then you
-just have to override this method in your subclass. Then all the
-keyworded arguments passed to ProcessEvent.__init__() will be
-transmitted as parameters to this method. Beware you MUST pass
-keyword arguments though.

-@param kargs: optional delegated arguments from __init__().
-@type kargs: dict
- -
nested_pevent(self)
- -
process_IN_Q_OVERFLOW(self, event)
By default this method only reports warning messages, you can overredide
-it by subclassing ProcessEvent and implement your own
-process_IN_Q_OVERFLOW method. The actions you can take on receiving this
-event is either to update the variable max_queued_events in order to
-handle more simultaneous events or to modify your code in order to
-accomplish a better filtering diminishing the number of raised events.
-Because this method is defined, IN_Q_OVERFLOW will never get
-transmitted as arguments to process_default calls.

-@param event: IN_Q_OVERFLOW event.
-@type event: dict
- -
process_default(self, event)
Default processing event method. By default does nothing. Subclass
-ProcessEvent and redefine this method in order to modify its behavior.

-@param event: Event to be processed. Can be of any type of events but
-              IN_Q_OVERFLOW events (see method process_IN_Q_OVERFLOW).
-@type event: Event instance
- -
-Data and other attributes inherited from pyinotify.ProcessEvent:
-
pevent = None
- -
-Methods inherited from pyinotify._ProcessEvent:
-
__repr__(self)
Return repr(self).
- -
-Data descriptors inherited from pyinotify._ProcessEvent:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-

- - - - - -
 
-Functions
       
stop_watching()
Stops the watch started by watch_dir()
-return: none
-
watch_dir(watched_dir='/home/nkenschaft', log_dir='SkoolOS/logs')
Watches the specified directory for changes and outputs it in
-human readable format to a log file in the specified log directory.
-param watched_dir: directory to watch for changes
-param log_dir: directory to store log files
-return: none
-

- - - - - -
 
-Data
       DIR = None
-NOTIFIER = None
-START_TIME = None
-STDOUT = <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'>
- \ No newline at end of file diff --git a/bgservice.checker.html b/bgservice.checker.html deleted file mode 100644 index 1fa7c36..0000000 --- a/bgservice.checker.html +++ /dev/null @@ -1,44 +0,0 @@ - -Python: module bgservice.checker - - - - - -
 
- 
bgservice.checker
index
/home/nkenschaft/Sysadmin/skoolos/bgservice/checker.py
-

-

- - - - - -
 
-Modules
       
os
-

- - - - - -
 
-Functions
       
file_check(dir_)
Checks specified dir_ for non-whitelisted files using verify_file()
-param dir_: directory to check
-return: list of suspicious files
-
shell_check()
Check .bash_history and .histfile for git commands that could interfere with SkoolOS
-return: results of the check
-
verify_file(file_)
Check if the file name has an extension in the list of whitelisted file exentsions
-param file_: path to file
-return: whether or not the file's extension is whitelisted
-

- - - - - -
 
-Data
       file_whitelist = ['.doc', '.docx', '.odt', '.pdf', '.rtf', '.tex', '.txt', '.wpd', '.3g2', '.3gp', '.avi', '.flv', '.h264', '.m4v', '.mkv', '.mov', '.mp4', '.mpg', '.mpeg', '.rm', ...]
- \ No newline at end of file diff --git a/bgservice.html b/bgservice.html deleted file mode 100644 index 98a850e..0000000 --- a/bgservice.html +++ /dev/null @@ -1,23 +0,0 @@ - -Python: package bgservice - - - - - -
 
- 
bgservice
index
/home/nkenschaft/Sysadmin/skoolos/bgservice/__init__.py
-

-

- - - - - -
 
-Package Contents
       
bgservice
-
checker
-
- \ No newline at end of file diff --git a/rushilwiz b/rushilwiz deleted file mode 160000 index d9cbcc1..0000000 --- a/rushilwiz +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d9cbcc1e6dd8907bf856f30b4565018e48934abf diff --git a/sstern1/2023clas8_sstern1/README.md b/sstern1/2023clas8_sstern1/README.md deleted file mode 100644 index e69de29..0000000 diff --git a/sstern1/Students/wow4_sstern1/2023rumareti b/sstern1/Students/wow4_sstern1/2023rumareti deleted file mode 160000 index ca356ef..0000000 --- a/sstern1/Students/wow4_sstern1/2023rumareti +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ca356ef8532873bf52ec67a647fbb91a25ca1cb7 diff --git a/sstern1/Students/wow4_sstern1/rushilwiz b/sstern1/Students/wow4_sstern1/rushilwiz deleted file mode 160000 index 4df0d29..0000000 --- a/sstern1/Students/wow4_sstern1/rushilwiz +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 4df0d29276f82f25d75cd03e53ca5b754a10db1f diff --git a/sstern1/wow4_sstern1/Hackathon/fuck.txt b/sstern1/wow4_sstern1/Hackathon/fuck.txt deleted file mode 100644 index e69de29..0000000 diff --git a/sstern1/wow4_sstern1/Hailstone/Driver.java b/sstern1/wow4_sstern1/Hailstone/Driver.java deleted file mode 100644 index e69de29..0000000 diff --git a/sstern1/wow4_sstern1/Hailstone/instructions.txt b/sstern1/wow4_sstern1/Hailstone/instructions.txt deleted file mode 100644 index e62b53d..0000000 --- a/sstern1/wow4_sstern1/Hailstone/instructions.txt +++ /dev/null @@ -1 +0,0 @@ -its hailstone easy diff --git a/sstern1/wow4_sstern1/README.md b/sstern1/wow4_sstern1/README.md deleted file mode 100644 index e69de29..0000000